avoid loop when deleting a resource
This commit is contained in:
parent
fc90cd9505
commit
5b0834a3ba
64 changed files with 126 additions and 126 deletions
126
README.md
126
README.md
|
|
@ -19,7 +19,7 @@ NetBox::status()->show(array $params)
|
|||
```php
|
||||
NetBox::circuits()->list(array $params)
|
||||
NetBox::circuits()->add(array $params)
|
||||
NetBox::circuits()->delete(int $id, array $params)
|
||||
NetBox::circuits()->remove(int $id, array $params)
|
||||
NetBox::circuits()->edit(int $id, array $params)
|
||||
NetBox::circuits()->show(int $id, array $params)
|
||||
```
|
||||
|
|
@ -27,7 +27,7 @@ NetBox::circuits()->show(int $id, array $params)
|
|||
```php
|
||||
NetBox::providers()->list(array $params)
|
||||
NetBox::providers()->add(array $params)
|
||||
NetBox::providers()->delete(int $id, array $params)
|
||||
NetBox::providers()->remove(int $id, array $params)
|
||||
NetBox::providers()->edit(int $id, array $params)
|
||||
NetBox::providers()->show(int $id, array $params)
|
||||
```
|
||||
|
|
@ -35,7 +35,7 @@ NetBox::providers()->show(int $id, array $params)
|
|||
```php
|
||||
NetBox::circuitTerminations()->list(array $params)
|
||||
NetBox::circuitTerminations()->add(array $params)
|
||||
NetBox::circuitTerminations()->delete(int $id, array $params)
|
||||
NetBox::circuitTerminations()->remove(int $id, array $params)
|
||||
NetBox::circuitTerminations()->edit(int $id, array $params)
|
||||
NetBox::circuitTerminations()->show(int $id, array $params)
|
||||
```
|
||||
|
|
@ -43,7 +43,7 @@ NetBox::circuitTerminations()->show(int $id, array $params)
|
|||
```php
|
||||
NetBox::circuitTypes()->list(array $params)
|
||||
NetBox::circuitTypes()->add(array $params)
|
||||
NetBox::circuitTypes()->delete(int $id, array $params)
|
||||
NetBox::circuitTypes()->remove(int $id, array $params)
|
||||
NetBox::circuitTypes()->edit(int $id, array $params)
|
||||
NetBox::circuitTypes()->show(int $id, array $params)
|
||||
```
|
||||
|
|
@ -52,7 +52,7 @@ NetBox::circuitTypes()->show(int $id, array $params)
|
|||
```php
|
||||
NetBox::cables()->list(array $params)
|
||||
NetBox::cables()->add(array $params)
|
||||
NetBox::cables()->delete(int $id, array $params)
|
||||
NetBox::cables()->remove(int $id, array $params)
|
||||
NetBox::cables()->edit(int $id, array $params)
|
||||
NetBox::cables()->show(int $id, array $params)
|
||||
```
|
||||
|
|
@ -68,7 +68,7 @@ NetBox::consoleConnections()->list(array $params)
|
|||
```php
|
||||
NetBox::consolePorts()->list(array $params)
|
||||
NetBox::consolePorts()->add(array $params)
|
||||
NetBox::consolePorts()->delete(int $id, array $params)
|
||||
NetBox::consolePorts()->remove(int $id, array $params)
|
||||
NetBox::consolePorts()->edit(int $id, array $params)
|
||||
NetBox::consolePorts()->show(int $id, array $params)
|
||||
NetBox::consolePorts()->trace(int $id, array $params)
|
||||
|
|
@ -77,7 +77,7 @@ NetBox::consolePorts()->trace(int $id, array $params)
|
|||
```php
|
||||
NetBox::consolePortTemplates()->list(array $params)
|
||||
NetBox::consolePortTemplates()->add(array $params)
|
||||
NetBox::consolePortTemplates()->delete(int $id, array $params)
|
||||
NetBox::consolePortTemplates()->remove(int $id, array $params)
|
||||
NetBox::consolePortTemplates()->edit(int $id, array $params)
|
||||
NetBox::consolePortTemplates()->show(int $id, array $params)
|
||||
```
|
||||
|
|
@ -85,7 +85,7 @@ NetBox::consolePortTemplates()->show(int $id, array $params)
|
|||
```php
|
||||
NetBox::consoleServerPorts()->list(array $params)
|
||||
NetBox::consoleServerPorts()->add(array $params)
|
||||
NetBox::consoleServerPorts()->delete(int $id, array $params)
|
||||
NetBox::consoleServerPorts()->remove(int $id, array $params)
|
||||
NetBox::consoleServerPorts()->edit(int $id, array $params)
|
||||
NetBox::consoleServerPorts()->show(int $id, array $params)
|
||||
```
|
||||
|
|
@ -93,7 +93,7 @@ NetBox::consoleServerPorts()->show(int $id, array $params)
|
|||
```php
|
||||
NetBox::consoleServerPortTemplates()->list(array $params)
|
||||
NetBox::consoleServerPortTemplates()->add(array $params)
|
||||
NetBox::consoleServerPortTemplates()->delete(int $id, array $params)
|
||||
NetBox::consoleServerPortTemplates()->remove(int $id, array $params)
|
||||
NetBox::consoleServerPortTemplates()->edit(int $id, array $params)
|
||||
NetBox::consoleServerPortTemplates()->show(int $id, array $params)
|
||||
```
|
||||
|
|
@ -101,7 +101,7 @@ NetBox::consoleServerPortTemplates()->show(int $id, array $params)
|
|||
```php
|
||||
NetBox::deviceBays()->list(array $params)
|
||||
NetBox::deviceBays()->add(array $params)
|
||||
NetBox::deviceBays()->delete(int $id, array $params)
|
||||
NetBox::deviceBays()->remove(int $id, array $params)
|
||||
NetBox::deviceBays()->edit(int $id, array $params)
|
||||
NetBox::deviceBays()->show(int $id, array $params)
|
||||
```
|
||||
|
|
@ -109,7 +109,7 @@ NetBox::deviceBays()->show(int $id, array $params)
|
|||
```php
|
||||
NetBox::deviceBayTemplates()->list(array $params)
|
||||
NetBox::deviceBayTemplates()->add(array $params)
|
||||
NetBox::deviceBayTemplates()->delete(int $id, array $params)
|
||||
NetBox::deviceBayTemplates()->remove(int $id, array $params)
|
||||
NetBox::deviceBayTemplates()->edit(int $id, array $params)
|
||||
NetBox::deviceBayTemplates()->show(int $id, array $params)
|
||||
```
|
||||
|
|
@ -117,7 +117,7 @@ NetBox::deviceBayTemplates()->show(int $id, array $params)
|
|||
```php
|
||||
NetBox::deviceRoles()->list(array $params)
|
||||
NetBox::deviceRoles()->add(array $params)
|
||||
NetBox::deviceRoles()->delete(int $id, array $params)
|
||||
NetBox::deviceRoles()->remove(int $id, array $params)
|
||||
NetBox::deviceRoles()->edit(int $id, array $params)
|
||||
NetBox::deviceRoles()->show(int $id, array $params)
|
||||
```
|
||||
|
|
@ -125,7 +125,7 @@ NetBox::deviceRoles()->show(int $id, array $params)
|
|||
```php
|
||||
NetBox::devices()->list(array $params)
|
||||
NetBox::devices()->add(array $params)
|
||||
NetBox::devices()->delete(int $id, array $params)
|
||||
NetBox::devices()->remove(int $id, array $params)
|
||||
NetBox::devices()->edit(int $id, array $params)
|
||||
NetBox::devices()->show(int $id, array $params)
|
||||
NetBox::devices()->napalm(int $id, array $params)
|
||||
|
|
@ -134,7 +134,7 @@ NetBox::devices()->napalm(int $id, array $params)
|
|||
```php
|
||||
NetBox::deviceTypes()->list(array $params)
|
||||
NetBox::deviceTypes()->add(array $params)
|
||||
NetBox::deviceTypes()->delete(int $id, array $params)
|
||||
NetBox::deviceTypes()->remove(int $id, array $params)
|
||||
NetBox::deviceTypes()->edit(int $id, array $params)
|
||||
NetBox::deviceTypes()->show(int $id, array $params)
|
||||
```
|
||||
|
|
@ -142,7 +142,7 @@ NetBox::deviceTypes()->show(int $id, array $params)
|
|||
```php
|
||||
NetBox::frontPorts()->list(array $params)
|
||||
NetBox::frontPorts()->add(array $params)
|
||||
NetBox::frontPorts()->delete(int $id, array $params)
|
||||
NetBox::frontPorts()->remove(int $id, array $params)
|
||||
NetBox::frontPorts()->edit(int $id, array $params)
|
||||
NetBox::frontPorts()->show(int $id, array $params)
|
||||
NetBox::frontPorts()->paths(int $id, array $params)
|
||||
|
|
@ -151,7 +151,7 @@ NetBox::frontPorts()->paths(int $id, array $params)
|
|||
```php
|
||||
NetBox::frontPortTemplates()->list(array $params)
|
||||
NetBox::frontPortTemplates()->add(array $params)
|
||||
NetBox::frontPortTemplates()->delete(int $id, array $params)
|
||||
NetBox::frontPortTemplates()->remove(int $id, array $params)
|
||||
NetBox::frontPortTemplates()->edit(int $id, array $params)
|
||||
NetBox::frontPortTemplates()->show(int $id, array $params)
|
||||
```
|
||||
|
|
@ -163,7 +163,7 @@ NetBox::interfaceConnections()->list(array $params)
|
|||
```php
|
||||
NetBox::interfaces()->list(array $params)
|
||||
NetBox::interfaces()->add(array $params)
|
||||
NetBox::interfaces()->delete(int $id, array $params)
|
||||
NetBox::interfaces()->remove(int $id, array $params)
|
||||
NetBox::interfaces()->edit(int $id, array $params)
|
||||
NetBox::interfaces()->show(int $id, array $params)
|
||||
NetBox::interfaces()->trace(int $id, array $params)
|
||||
|
|
@ -172,7 +172,7 @@ NetBox::interfaces()->trace(int $id, array $params)
|
|||
```php
|
||||
NetBox::interfaceTemplates()->list(array $params)
|
||||
NetBox::interfaceTemplates()->add(array $params)
|
||||
NetBox::interfaceTemplates()->delete(int $id, array $params)
|
||||
NetBox::interfaceTemplates()->remove(int $id, array $params)
|
||||
NetBox::interfaceTemplates()->edit(int $id, array $params)
|
||||
NetBox::interfaceTemplates()->show(int $id, array $params)
|
||||
```
|
||||
|
|
@ -180,7 +180,7 @@ NetBox::interfaceTemplates()->show(int $id, array $params)
|
|||
```php
|
||||
NetBox::inventoryItems()->list(array $params)
|
||||
NetBox::inventoryItems()->add(array $params)
|
||||
NetBox::inventoryItems()->delete(int $id, array $params)
|
||||
NetBox::inventoryItems()->remove(int $id, array $params)
|
||||
NetBox::inventoryItems()->edit(int $id, array $params)
|
||||
NetBox::inventoryItems()->show(int $id, array $params)
|
||||
```
|
||||
|
|
@ -188,7 +188,7 @@ NetBox::inventoryItems()->show(int $id, array $params)
|
|||
```php
|
||||
NetBox::manufacturers()->list(array $params)
|
||||
NetBox::manufacturers()->add(array $params)
|
||||
NetBox::manufacturers()->delete(int $id, array $params)
|
||||
NetBox::manufacturers()->remove(int $id, array $params)
|
||||
NetBox::manufacturers()->edit(int $id, array $params)
|
||||
NetBox::manufacturers()->show(int $id, array $params)
|
||||
```
|
||||
|
|
@ -196,7 +196,7 @@ NetBox::manufacturers()->show(int $id, array $params)
|
|||
```php
|
||||
NetBox::platforms()->list(array $params)
|
||||
NetBox::platforms()->add(array $params)
|
||||
NetBox::platforms()->delete(int $id, array $params)
|
||||
NetBox::platforms()->remove(int $id, array $params)
|
||||
NetBox::platforms()->edit(int $id, array $params)
|
||||
NetBox::platforms()->show(int $id, array $params)
|
||||
```
|
||||
|
|
@ -204,7 +204,7 @@ NetBox::platforms()->show(int $id, array $params)
|
|||
```php
|
||||
NetBox::powerFeeds()->list(array $params)
|
||||
NetBox::powerFeeds()->add(array $params)
|
||||
NetBox::powerFeeds()->delete(int $id, array $params)
|
||||
NetBox::powerFeeds()->remove(int $id, array $params)
|
||||
NetBox::powerFeeds()->edit(int $id, array $params)
|
||||
NetBox::powerFeeds()->show(int $id, array $params)
|
||||
NetBox::powerFeeds()->trace(int $id, array $params)
|
||||
|
|
@ -213,7 +213,7 @@ NetBox::powerFeeds()->trace(int $id, array $params)
|
|||
```php
|
||||
NetBox::powerOutlets()->list(array $params)
|
||||
NetBox::powerOutlets()->add(array $params)
|
||||
NetBox::powerOutlets()->delete(int $id, array $params)
|
||||
NetBox::powerOutlets()->remove(int $id, array $params)
|
||||
NetBox::powerOutlets()->edit(int $id, array $params)
|
||||
NetBox::powerOutlets()->show(int $id, array $params)
|
||||
NetBox::powerOutlets()->trace(int $id, array $params)
|
||||
|
|
@ -222,7 +222,7 @@ NetBox::powerOutlets()->trace(int $id, array $params)
|
|||
```php
|
||||
NetBox::powerOutletTemplates()->list(array $params)
|
||||
NetBox::powerOutletTemplates()->add(array $params)
|
||||
NetBox::powerOutletTemplates()->delete(int $id, array $params)
|
||||
NetBox::powerOutletTemplates()->remove(int $id, array $params)
|
||||
NetBox::powerOutletTemplates()->edit(int $id, array $params)
|
||||
NetBox::powerOutletTemplates()->show(int $id, array $params)
|
||||
```
|
||||
|
|
@ -230,7 +230,7 @@ NetBox::powerOutletTemplates()->show(int $id, array $params)
|
|||
```php
|
||||
NetBox::powerPanels()->list(array $params)
|
||||
NetBox::powerPanels()->add(array $params)
|
||||
NetBox::powerPanels()->delete(int $id, array $params)
|
||||
NetBox::powerPanels()->remove(int $id, array $params)
|
||||
NetBox::powerPanels()->edit(int $id, array $params)
|
||||
NetBox::powerPanels()->show(int $id, array $params)
|
||||
```
|
||||
|
|
@ -238,7 +238,7 @@ NetBox::powerPanels()->show(int $id, array $params)
|
|||
```php
|
||||
NetBox::powerPorts()->list(array $params)
|
||||
NetBox::powerPorts()->add(array $params)
|
||||
NetBox::powerPorts()->delete(int $id, array $params)
|
||||
NetBox::powerPorts()->remove(int $id, array $params)
|
||||
NetBox::powerPorts()->edit(int $id, array $params)
|
||||
NetBox::powerPorts()->show(int $id, array $params)
|
||||
NetBox::powerPorts()->trace(int $id, array $params)
|
||||
|
|
@ -247,7 +247,7 @@ NetBox::powerPorts()->trace(int $id, array $params)
|
|||
```php
|
||||
NetBox::powerPortTemplates()->list(array $params)
|
||||
NetBox::powerPortTemplates()->add(array $params)
|
||||
NetBox::powerPortTemplates()->delete(int $id, array $params)
|
||||
NetBox::powerPortTemplates()->remove(int $id, array $params)
|
||||
NetBox::powerPortTemplates()->edit(int $id, array $params)
|
||||
NetBox::powerPortTemplates()->show(int $id, array $params)
|
||||
```
|
||||
|
|
@ -255,7 +255,7 @@ NetBox::powerPortTemplates()->show(int $id, array $params)
|
|||
```php
|
||||
NetBox::rackGroups()->list(array $params)
|
||||
NetBox::rackGroups()->add(array $params)
|
||||
NetBox::rackGroups()->delete(int $id, array $params)
|
||||
NetBox::rackGroups()->remove(int $id, array $params)
|
||||
NetBox::rackGroups()->edit(int $id, array $params)
|
||||
NetBox::rackGroups()->show(int $id, array $params)
|
||||
```
|
||||
|
|
@ -263,7 +263,7 @@ NetBox::rackGroups()->show(int $id, array $params)
|
|||
```php
|
||||
NetBox::rackReservations()->list(array $params)
|
||||
NetBox::rackReservations()->add(array $params)
|
||||
NetBox::rackReservations()->delete(int $id, array $params)
|
||||
NetBox::rackReservations()->remove(int $id, array $params)
|
||||
NetBox::rackReservations()->edit(int $id, array $params)
|
||||
NetBox::rackReservations()->show(int $id, array $params)
|
||||
```
|
||||
|
|
@ -271,7 +271,7 @@ NetBox::rackReservations()->show(int $id, array $params)
|
|||
```php
|
||||
NetBox::rackRoles()->list(array $params)
|
||||
NetBox::rackRoles()->add(array $params)
|
||||
NetBox::rackRoles()->delete(int $id, array $params)
|
||||
NetBox::rackRoles()->remove(int $id, array $params)
|
||||
NetBox::rackRoles()->edit(int $id, array $params)
|
||||
NetBox::rackRoles()->show(int $id, array $params)
|
||||
```
|
||||
|
|
@ -279,7 +279,7 @@ NetBox::rackRoles()->show(int $id, array $params)
|
|||
```php
|
||||
NetBox::racks()->list(array $params)
|
||||
NetBox::racks()->add(array $params)
|
||||
NetBox::racks()->delete(int $id, array $params)
|
||||
NetBox::racks()->remove(int $id, array $params)
|
||||
NetBox::racks()->edit(int $id, array $params)
|
||||
NetBox::racks()->show(int $id, array $params)
|
||||
NetBox::racks()->elevation(int $id, array $params)
|
||||
|
|
@ -288,7 +288,7 @@ NetBox::racks()->elevation(int $id, array $params)
|
|||
```php
|
||||
NetBox::rearPorts()->list(array $params)
|
||||
NetBox::rearPorts()->add(array $params)
|
||||
NetBox::rearPorts()->delete(int $id, array $params)
|
||||
NetBox::rearPorts()->remove(int $id, array $params)
|
||||
NetBox::rearPorts()->edit(int $id, array $params)
|
||||
NetBox::rearPorts()->show(int $id, array $params)
|
||||
NetBox::rearPorts()->paths(int $id, array $params)
|
||||
|
|
@ -297,7 +297,7 @@ NetBox::rearPorts()->paths(int $id, array $params)
|
|||
```php
|
||||
NetBox::rearPortTemplates()->list(array $params)
|
||||
NetBox::rearPortTemplates()->add(array $params)
|
||||
NetBox::rearPortTemplates()->delete(int $id, array $params)
|
||||
NetBox::rearPortTemplates()->remove(int $id, array $params)
|
||||
NetBox::rearPortTemplates()->edit(int $id, array $params)
|
||||
NetBox::rearPortTemplates()->show(int $id, array $params)
|
||||
```
|
||||
|
|
@ -305,7 +305,7 @@ NetBox::rearPortTemplates()->show(int $id, array $params)
|
|||
```php
|
||||
NetBox::regions()->list(array $params)
|
||||
NetBox::regions()->add(array $params)
|
||||
NetBox::regions()->delete(int $id, array $params)
|
||||
NetBox::regions()->remove(int $id, array $params)
|
||||
NetBox::regions()->edit(int $id, array $params)
|
||||
NetBox::regions()->show(int $id, array $params)
|
||||
```
|
||||
|
|
@ -313,7 +313,7 @@ NetBox::regions()->show(int $id, array $params)
|
|||
```php
|
||||
NetBox::sites()->list(array $params)
|
||||
NetBox::sites()->add(array $params)
|
||||
NetBox::sites()->delete(int $id, array $params)
|
||||
NetBox::sites()->remove(int $id, array $params)
|
||||
NetBox::sites()->edit(int $id, array $params)
|
||||
NetBox::sites()->show(int $id, array $params)
|
||||
```
|
||||
|
|
@ -321,7 +321,7 @@ NetBox::sites()->show(int $id, array $params)
|
|||
```php
|
||||
NetBox::virtualChassis()->list(array $params)
|
||||
NetBox::virtualChassis()->add(array $params)
|
||||
NetBox::virtualChassis()->delete(int $id, array $params)
|
||||
NetBox::virtualChassis()->remove(int $id, array $params)
|
||||
NetBox::virtualChassis()->edit(int $id, array $params)
|
||||
NetBox::virtualChassis()->show(int $id, array $params)
|
||||
```
|
||||
|
|
@ -330,7 +330,7 @@ NetBox::virtualChassis()->show(int $id, array $params)
|
|||
```php
|
||||
NetBox::configContexts()->list(array $params)
|
||||
NetBox::configContexts()->add(array $params)
|
||||
NetBox::configContexts()->delete(int $id, array $params)
|
||||
NetBox::configContexts()->remove(int $id, array $params)
|
||||
NetBox::configContexts()->edit(int $id, array $params)
|
||||
NetBox::configContexts()->show(int $id, array $params)
|
||||
```
|
||||
|
|
@ -343,7 +343,7 @@ NetBox::contentTypes()->show(int $id, array $params)
|
|||
```php
|
||||
NetBox::customFields()->list(array $params)
|
||||
NetBox::customFields()->add(array $params)
|
||||
NetBox::customFields()->delete(int $id, array $params)
|
||||
NetBox::customFields()->remove(int $id, array $params)
|
||||
NetBox::customFields()->edit(int $id, array $params)
|
||||
NetBox::customFields()->show(int $id, array $params)
|
||||
```
|
||||
|
|
@ -351,7 +351,7 @@ NetBox::customFields()->show(int $id, array $params)
|
|||
```php
|
||||
NetBox::exportTemplates()->list(array $params)
|
||||
NetBox::exportTemplates()->add(array $params)
|
||||
NetBox::exportTemplates()->delete(int $id, array $params)
|
||||
NetBox::exportTemplates()->remove(int $id, array $params)
|
||||
NetBox::exportTemplates()->edit(int $id, array $params)
|
||||
NetBox::exportTemplates()->show(int $id, array $params)
|
||||
```
|
||||
|
|
@ -359,7 +359,7 @@ NetBox::exportTemplates()->show(int $id, array $params)
|
|||
```php
|
||||
NetBox::imageAttachments()->list(array $params)
|
||||
NetBox::imageAttachments()->add(array $params)
|
||||
NetBox::imageAttachments()->delete(int $id, array $params)
|
||||
NetBox::imageAttachments()->remove(int $id, array $params)
|
||||
NetBox::imageAttachments()->edit(int $id, array $params)
|
||||
NetBox::imageAttachments()->show(int $id, array $params)
|
||||
```
|
||||
|
|
@ -388,7 +388,7 @@ NetBox::scripts()->show(int $id, array $params)
|
|||
```php
|
||||
NetBox::tags()->list(array $params)
|
||||
NetBox::tags()->add(array $params)
|
||||
NetBox::tags()->delete(int $id, array $params)
|
||||
NetBox::tags()->remove(int $id, array $params)
|
||||
NetBox::tags()->edit(int $id, array $params)
|
||||
NetBox::tags()->show(int $id, array $params)
|
||||
```
|
||||
|
|
@ -397,7 +397,7 @@ NetBox::tags()->show(int $id, array $params)
|
|||
```php
|
||||
NetBox::aggregates()->list(array $params)
|
||||
NetBox::aggregates()->add(array $params)
|
||||
NetBox::aggregates()->delete(int $id, array $params)
|
||||
NetBox::aggregates()->remove(int $id, array $params)
|
||||
NetBox::aggregates()->edit(int $id, array $params)
|
||||
NetBox::aggregates()->show(int $id, array $params)
|
||||
```
|
||||
|
|
@ -405,7 +405,7 @@ NetBox::aggregates()->show(int $id, array $params)
|
|||
```php
|
||||
NetBox::ipAddresses()->list(array $params)
|
||||
NetBox::ipAddresses()->add(array $params)
|
||||
NetBox::ipAddresses()->delete(int $id, array $params)
|
||||
NetBox::ipAddresses()->remove(int $id, array $params)
|
||||
NetBox::ipAddresses()->edit(int $id, array $params)
|
||||
NetBox::ipAddresses()->show(int $id, array $params)
|
||||
```
|
||||
|
|
@ -413,7 +413,7 @@ NetBox::ipAddresses()->show(int $id, array $params)
|
|||
```php
|
||||
NetBox::prefixes()->list(array $params)
|
||||
NetBox::prefixes()->add(array $params)
|
||||
NetBox::prefixes()->delete(int $id, array $params)
|
||||
NetBox::prefixes()->remove(int $id, array $params)
|
||||
NetBox::prefixes()->edit(int $id, array $params)
|
||||
NetBox::prefixes()->show(int $id, array $params)
|
||||
NetBox::prefixes()->addAvailableIps(int $id, array $params)
|
||||
|
|
@ -425,7 +425,7 @@ NetBox::prefixes()->showAvailable(int $id, array $params)
|
|||
```php
|
||||
NetBox::rirs()->list(array $params)
|
||||
NetBox::rirs()->add(array $params)
|
||||
NetBox::rirs()->delete(int $id, array $params)
|
||||
NetBox::rirs()->remove(int $id, array $params)
|
||||
NetBox::rirs()->edit(int $id, array $params)
|
||||
NetBox::rirs()->show(int $id, array $params)
|
||||
```
|
||||
|
|
@ -433,7 +433,7 @@ NetBox::rirs()->show(int $id, array $params)
|
|||
```php
|
||||
NetBox::roles()->list(array $params)
|
||||
NetBox::roles()->add(array $params)
|
||||
NetBox::roles()->delete(int $id, array $params)
|
||||
NetBox::roles()->remove(int $id, array $params)
|
||||
NetBox::roles()->edit(int $id, array $params)
|
||||
NetBox::roles()->show(int $id, array $params)
|
||||
```
|
||||
|
|
@ -441,7 +441,7 @@ NetBox::roles()->show(int $id, array $params)
|
|||
```php
|
||||
NetBox::routeTargets()->list(array $params)
|
||||
NetBox::routeTargets()->add(array $params)
|
||||
NetBox::routeTargets()->delete(int $id, array $params)
|
||||
NetBox::routeTargets()->remove(int $id, array $params)
|
||||
NetBox::routeTargets()->edit(int $id, array $params)
|
||||
NetBox::routeTargets()->show(int $id, array $params)
|
||||
```
|
||||
|
|
@ -449,7 +449,7 @@ NetBox::routeTargets()->show(int $id, array $params)
|
|||
```php
|
||||
NetBox::services()->list(array $params)
|
||||
NetBox::services()->add(array $params)
|
||||
NetBox::services()->delete(int $id, array $params)
|
||||
NetBox::services()->remove(int $id, array $params)
|
||||
NetBox::services()->edit(int $id, array $params)
|
||||
NetBox::services()->show(int $id, array $params)
|
||||
```
|
||||
|
|
@ -457,7 +457,7 @@ NetBox::services()->show(int $id, array $params)
|
|||
```php
|
||||
NetBox::vlanGroups()->list(array $params)
|
||||
NetBox::vlanGroups()->add(array $params)
|
||||
NetBox::vlanGroups()->delete(int $id, array $params)
|
||||
NetBox::vlanGroups()->remove(int $id, array $params)
|
||||
NetBox::vlanGroups()->edit(int $id, array $params)
|
||||
NetBox::vlanGroups()->show(int $id, array $params)
|
||||
```
|
||||
|
|
@ -465,7 +465,7 @@ NetBox::vlanGroups()->show(int $id, array $params)
|
|||
```php
|
||||
NetBox::vlans()->list(array $params)
|
||||
NetBox::vlans()->add(array $params)
|
||||
NetBox::vlans()->delete(int $id, array $params)
|
||||
NetBox::vlans()->remove(int $id, array $params)
|
||||
NetBox::vlans()->edit(int $id, array $params)
|
||||
NetBox::vlans()->show(int $id, array $params)
|
||||
```
|
||||
|
|
@ -473,7 +473,7 @@ NetBox::vlans()->show(int $id, array $params)
|
|||
```php
|
||||
NetBox::vrfs()->list(array $params)
|
||||
NetBox::vrfs()->add(array $params)
|
||||
NetBox::vrfs()->delete(int $id, array $params)
|
||||
NetBox::vrfs()->remove(int $id, array $params)
|
||||
NetBox::vrfs()->edit(int $id, array $params)
|
||||
NetBox::vrfs()->show(int $id, array $params)
|
||||
```
|
||||
|
|
@ -486,7 +486,7 @@ NetBox::keyGen()->list(array $params)
|
|||
```php
|
||||
NetBox::secrets()->list(array $params)
|
||||
NetBox::secrets()->add(array $params)
|
||||
NetBox::secrets()->delete(int $id, array $params)
|
||||
NetBox::secrets()->remove(int $id, array $params)
|
||||
NetBox::secrets()->edit(int $id, array $params)
|
||||
NetBox::secrets()->show(int $id, array $params)
|
||||
```
|
||||
|
|
@ -494,7 +494,7 @@ NetBox::secrets()->show(int $id, array $params)
|
|||
```php
|
||||
NetBox::secretRoles()->list(array $params)
|
||||
NetBox::secretRoles()->add(array $params)
|
||||
NetBox::secretRoles()->delete(int $id, array $params)
|
||||
NetBox::secretRoles()->remove(int $id, array $params)
|
||||
NetBox::secretRoles()->edit(int $id, array $params)
|
||||
NetBox::secretRoles()->show(int $id, array $params)
|
||||
```
|
||||
|
|
@ -507,7 +507,7 @@ NetBox::session()->list(array $params)
|
|||
```php
|
||||
NetBox::tenantGroups()->list(array $params)
|
||||
NetBox::tenantGroups()->add(array $params)
|
||||
NetBox::tenantGroups()->delete(int $id, array $params)
|
||||
NetBox::tenantGroups()->remove(int $id, array $params)
|
||||
NetBox::tenantGroups()->edit(int $id, array $params)
|
||||
NetBox::tenantGroups()->show(int $id, array $params)
|
||||
```
|
||||
|
|
@ -515,7 +515,7 @@ NetBox::tenantGroups()->show(int $id, array $params)
|
|||
```php
|
||||
NetBox::tenants()->list(array $params)
|
||||
NetBox::tenants()->add(array $params)
|
||||
NetBox::tenants()->delete(int $id, array $params)
|
||||
NetBox::tenants()->remove(int $id, array $params)
|
||||
NetBox::tenants()->edit(int $id, array $params)
|
||||
NetBox::tenants()->show(int $id, array $params)
|
||||
```
|
||||
|
|
@ -528,7 +528,7 @@ NetBox::config()->list(array $params)
|
|||
```php
|
||||
NetBox::groups()->list(array $params)
|
||||
NetBox::groups()->add(array $params)
|
||||
NetBox::groups()->delete(int $id, array $params)
|
||||
NetBox::groups()->remove(int $id, array $params)
|
||||
NetBox::groups()->edit(int $id, array $params)
|
||||
NetBox::groups()->show(int $id, array $params)
|
||||
```
|
||||
|
|
@ -536,7 +536,7 @@ NetBox::groups()->show(int $id, array $params)
|
|||
```php
|
||||
NetBox::permissions()->list(array $params)
|
||||
NetBox::permissions()->add(array $params)
|
||||
NetBox::permissions()->delete(int $id, array $params)
|
||||
NetBox::permissions()->remove(int $id, array $params)
|
||||
NetBox::permissions()->edit(int $id, array $params)
|
||||
NetBox::permissions()->show(int $id, array $params)
|
||||
```
|
||||
|
|
@ -544,7 +544,7 @@ NetBox::permissions()->show(int $id, array $params)
|
|||
```php
|
||||
NetBox::users()->list(array $params)
|
||||
NetBox::users()->add(array $params)
|
||||
NetBox::users()->delete(int $id, array $params)
|
||||
NetBox::users()->remove(int $id, array $params)
|
||||
NetBox::users()->edit(int $id, array $params)
|
||||
NetBox::users()->show(int $id, array $params)
|
||||
```
|
||||
|
|
@ -553,7 +553,7 @@ NetBox::users()->show(int $id, array $params)
|
|||
```php
|
||||
NetBox::clusterGroups()->list(array $params)
|
||||
NetBox::clusterGroups()->add(array $params)
|
||||
NetBox::clusterGroups()->delete(int $id, array $params)
|
||||
NetBox::clusterGroups()->remove(int $id, array $params)
|
||||
NetBox::clusterGroups()->edit(int $id, array $params)
|
||||
NetBox::clusterGroups()->show(int $id, array $params)
|
||||
```
|
||||
|
|
@ -561,7 +561,7 @@ NetBox::clusterGroups()->show(int $id, array $params)
|
|||
```php
|
||||
NetBox::clusters()->list(array $params)
|
||||
NetBox::clusters()->add(array $params)
|
||||
NetBox::clusters()->delete(int $id, array $params)
|
||||
NetBox::clusters()->remove(int $id, array $params)
|
||||
NetBox::clusters()->edit(int $id, array $params)
|
||||
NetBox::clusters()->show(int $id, array $params)
|
||||
```
|
||||
|
|
@ -569,7 +569,7 @@ NetBox::clusters()->show(int $id, array $params)
|
|||
```php
|
||||
NetBox::clusterTypes()->list(array $params)
|
||||
NetBox::clusterTypes()->add(array $params)
|
||||
NetBox::clusterTypes()->delete(int $id, array $params)
|
||||
NetBox::clusterTypes()->remove(int $id, array $params)
|
||||
NetBox::clusterTypes()->edit(int $id, array $params)
|
||||
NetBox::clusterTypes()->show(int $id, array $params)
|
||||
```
|
||||
|
|
@ -577,7 +577,7 @@ NetBox::clusterTypes()->show(int $id, array $params)
|
|||
```php
|
||||
NetBox::vinterfaces()->list(array $params)
|
||||
NetBox::vinterfaces()->add(array $params)
|
||||
NetBox::vinterfaces()->delete(int $id, array $params)
|
||||
NetBox::vinterfaces()->remove(int $id, array $params)
|
||||
NetBox::vinterfaces()->edit(int $id, array $params)
|
||||
NetBox::vinterfaces()->show(int $id, array $params)
|
||||
```
|
||||
|
|
@ -585,7 +585,7 @@ NetBox::vinterfaces()->show(int $id, array $params)
|
|||
```php
|
||||
NetBox::virtualMachines()->list(array $params)
|
||||
NetBox::virtualMachines()->add(array $params)
|
||||
NetBox::virtualMachines()->delete(int $id, array $params)
|
||||
NetBox::virtualMachines()->remove(int $id, array $params)
|
||||
NetBox::virtualMachines()->edit(int $id, array $params)
|
||||
NetBox::virtualMachines()->show(int $id, array $params)
|
||||
```
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ class CircuitTerminations extends AbstractApi
|
|||
* @return mixed
|
||||
* @throws \GuzzleHttp\Exception\GuzzleException
|
||||
*/
|
||||
public function delete($id, $params=[])
|
||||
public function remove($id, $params=[])
|
||||
{
|
||||
return $this->delete("/circuits/circuit-terminations/".$id."/", $params);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ class CircuitTypes extends AbstractApi
|
|||
* @return mixed
|
||||
* @throws \GuzzleHttp\Exception\GuzzleException
|
||||
*/
|
||||
public function delete($id, $params=[])
|
||||
public function remove($id, $params=[])
|
||||
{
|
||||
return $this->delete("/circuits/circuit-types/".$id."/", $params);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ class Circuits extends AbstractApi
|
|||
* @return mixed
|
||||
* @throws \GuzzleHttp\Exception\GuzzleException
|
||||
*/
|
||||
public function delete($id, $params=[])
|
||||
public function remove($id, $params=[])
|
||||
{
|
||||
return $this->delete("/circuits/circuits/".$id."/", $params);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ class Providers extends AbstractApi
|
|||
* @return mixed
|
||||
* @throws \GuzzleHttp\Exception\GuzzleException
|
||||
*/
|
||||
public function delete($id, $params=[])
|
||||
public function remove($id, $params=[])
|
||||
{
|
||||
return $this->delete("/circuits/providers/".$id."/", $params);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ class Cables extends AbstractApi
|
|||
* @return mixed
|
||||
* @throws \GuzzleHttp\Exception\GuzzleException
|
||||
*/
|
||||
public function delete($id, $params=[])
|
||||
public function remove($id, $params=[])
|
||||
{
|
||||
return $this->delete("/dcim/cables/".$id."/", $params);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ class ConsolePortTemplates extends AbstractApi
|
|||
* @return mixed
|
||||
* @throws \GuzzleHttp\Exception\GuzzleException
|
||||
*/
|
||||
public function delete($id, $params=[])
|
||||
public function remove($id, $params=[])
|
||||
{
|
||||
return $this->delete("/dcim/console-port-templates/".$id."/", $params);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ class ConsolePorts extends AbstractApi
|
|||
* @return mixed
|
||||
* @throws \GuzzleHttp\Exception\GuzzleException
|
||||
*/
|
||||
public function delete($id, $params=[])
|
||||
public function remove($id, $params=[])
|
||||
{
|
||||
return $this->delete("/dcim/console-ports/".$id."/", $params);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ class ConsoleServerPortTemplates extends AbstractApi
|
|||
* @return mixed
|
||||
* @throws \GuzzleHttp\Exception\GuzzleException
|
||||
*/
|
||||
public function delete($id, $params=[])
|
||||
public function remove($id, $params=[])
|
||||
{
|
||||
return $this->delete("/dcim/console-server-port-templates/".$id."/", $params);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ class ConsoleServerPorts extends AbstractApi
|
|||
* @return mixed
|
||||
* @throws \GuzzleHttp\Exception\GuzzleException
|
||||
*/
|
||||
public function delete($id, $params=[])
|
||||
public function remove($id, $params=[])
|
||||
{
|
||||
return $this->delete("/dcim/console-server-ports/".$id."/", $params);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ class DeviceBayTemplates extends AbstractApi
|
|||
* @return mixed
|
||||
* @throws \GuzzleHttp\Exception\GuzzleException
|
||||
*/
|
||||
public function delete($id, $params=[])
|
||||
public function remove($id, $params=[])
|
||||
{
|
||||
return $this->delete("/dcim/device-bay-templates/".$id."/", $params);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ class DeviceBays extends AbstractApi
|
|||
* @return mixed
|
||||
* @throws \GuzzleHttp\Exception\GuzzleException
|
||||
*/
|
||||
public function delete($id, $params=[])
|
||||
public function remove($id, $params=[])
|
||||
{
|
||||
return $this->delete("/dcim/device-bays/".$id."/", $params);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ class DeviceRoles extends AbstractApi
|
|||
* @return mixed
|
||||
* @throws \GuzzleHttp\Exception\GuzzleException
|
||||
*/
|
||||
public function delete($id, $params=[])
|
||||
public function remove($id, $params=[])
|
||||
{
|
||||
return $this->delete("/dcim/device-roles/".$id."/", $params);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ class DeviceTypes extends AbstractApi
|
|||
* @return mixed
|
||||
* @throws \GuzzleHttp\Exception\GuzzleException
|
||||
*/
|
||||
public function delete($id, $params=[])
|
||||
public function remove($id, $params=[])
|
||||
{
|
||||
return $this->delete("/dcim/device-types/".$id."/", $params);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ class Devices extends AbstractApi
|
|||
* @return mixed
|
||||
* @throws \GuzzleHttp\Exception\GuzzleException
|
||||
*/
|
||||
public function delete($id, $params=[])
|
||||
public function remove($id, $params=[])
|
||||
{
|
||||
return $this->delete("/dcim/devices/".$id."/", $params);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ class FrontPortTemplates extends AbstractApi
|
|||
* @return mixed
|
||||
* @throws \GuzzleHttp\Exception\GuzzleException
|
||||
*/
|
||||
public function delete($id, $params=[])
|
||||
public function remove($id, $params=[])
|
||||
{
|
||||
return $this->delete("/dcim/front-port-templates/".$id."/", $params);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ class FrontPorts extends AbstractApi
|
|||
* @return mixed
|
||||
* @throws \GuzzleHttp\Exception\GuzzleException
|
||||
*/
|
||||
public function delete($id, $params=[])
|
||||
public function remove($id, $params=[])
|
||||
{
|
||||
return $this->delete("/dcim/front-ports/".$id."/", $params);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ class InterfaceTemplates extends AbstractApi
|
|||
* @return mixed
|
||||
* @throws \GuzzleHttp\Exception\GuzzleException
|
||||
*/
|
||||
public function delete($id, $params=[])
|
||||
public function remove($id, $params=[])
|
||||
{
|
||||
return $this->delete("/dcim/interface-templates/".$id."/", $params);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ class Interfaces extends AbstractApi
|
|||
* @return mixed
|
||||
* @throws \GuzzleHttp\Exception\GuzzleException
|
||||
*/
|
||||
public function delete($id, $params=[])
|
||||
public function remove($id, $params=[])
|
||||
{
|
||||
return $this->delete("/dcim/interfaces/".$id."/", $params);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ class InventoryItems extends AbstractApi
|
|||
* @return mixed
|
||||
* @throws \GuzzleHttp\Exception\GuzzleException
|
||||
*/
|
||||
public function delete($id, $params=[])
|
||||
public function remove($id, $params=[])
|
||||
{
|
||||
return $this->delete("/dcim/inventory-items/".$id."/", $params);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ class Manufacturers extends AbstractApi
|
|||
* @return mixed
|
||||
* @throws \GuzzleHttp\Exception\GuzzleException
|
||||
*/
|
||||
public function delete($id, $params=[])
|
||||
public function remove($id, $params=[])
|
||||
{
|
||||
return $this->delete("/dcim/manufacturers/".$id."/", $params);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ class Platforms extends AbstractApi
|
|||
* @return mixed
|
||||
* @throws \GuzzleHttp\Exception\GuzzleException
|
||||
*/
|
||||
public function delete($id, $params=[])
|
||||
public function remove($id, $params=[])
|
||||
{
|
||||
return $this->delete("/dcim/platforms/".$id."/", $params);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ class PowerFeeds extends AbstractApi
|
|||
* @return mixed
|
||||
* @throws \GuzzleHttp\Exception\GuzzleException
|
||||
*/
|
||||
public function delete($id, $params=[])
|
||||
public function remove($id, $params=[])
|
||||
{
|
||||
return $this->delete("/dcim/power-feeds/".$id."/", $params);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ class PowerOutletTemplates extends AbstractApi
|
|||
* @return mixed
|
||||
* @throws \GuzzleHttp\Exception\GuzzleException
|
||||
*/
|
||||
public function delete($id, $params=[])
|
||||
public function remove($id, $params=[])
|
||||
{
|
||||
return $this->delete("/dcim/power-outlet-templates/".$id."/", $params);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ class PowerOutlets extends AbstractApi
|
|||
* @return mixed
|
||||
* @throws \GuzzleHttp\Exception\GuzzleException
|
||||
*/
|
||||
public function delete($id, $params=[])
|
||||
public function remove($id, $params=[])
|
||||
{
|
||||
return $this->delete("/dcim/power-outlets/".$id."/", $params);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ class PowerPanels extends AbstractApi
|
|||
* @return mixed
|
||||
* @throws \GuzzleHttp\Exception\GuzzleException
|
||||
*/
|
||||
public function delete($id, $params=[])
|
||||
public function remove($id, $params=[])
|
||||
{
|
||||
return $this->delete("/dcim/power-panels/".$id."/", $params);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ class PowerPortTemplates extends AbstractApi
|
|||
* @return mixed
|
||||
* @throws \GuzzleHttp\Exception\GuzzleException
|
||||
*/
|
||||
public function delete($id, $params=[])
|
||||
public function remove($id, $params=[])
|
||||
{
|
||||
return $this->delete("/dcim/power-port-templates/".$id."/", $params);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ class PowerPorts extends AbstractApi
|
|||
* @return mixed
|
||||
* @throws \GuzzleHttp\Exception\GuzzleException
|
||||
*/
|
||||
public function delete($id, $params=[])
|
||||
public function remove($id, $params=[])
|
||||
{
|
||||
return $this->delete("/dcim/power-ports/".$id."/", $params);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ class RackGroups extends AbstractApi
|
|||
* @return mixed
|
||||
* @throws \GuzzleHttp\Exception\GuzzleException
|
||||
*/
|
||||
public function delete($id, $params=[])
|
||||
public function remove($id, $params=[])
|
||||
{
|
||||
return $this->delete("/dcim/rack-groups/".$id."/", $params);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ class RackReservations extends AbstractApi
|
|||
* @return mixed
|
||||
* @throws \GuzzleHttp\Exception\GuzzleException
|
||||
*/
|
||||
public function delete($id, $params=[])
|
||||
public function remove($id, $params=[])
|
||||
{
|
||||
return $this->delete("/dcim/rack-reservations/".$id."/", $params);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ class RackRoles extends AbstractApi
|
|||
* @return mixed
|
||||
* @throws \GuzzleHttp\Exception\GuzzleException
|
||||
*/
|
||||
public function delete($id, $params=[])
|
||||
public function remove($id, $params=[])
|
||||
{
|
||||
return $this->delete("/dcim/rack-roles/".$id."/", $params);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ class Racks extends AbstractApi
|
|||
* @return mixed
|
||||
* @throws \GuzzleHttp\Exception\GuzzleException
|
||||
*/
|
||||
public function delete($id, $params=[])
|
||||
public function remove($id, $params=[])
|
||||
{
|
||||
return $this->delete("/dcim/racks/".$id."/", $params);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ class RearPortTemplates extends AbstractApi
|
|||
* @return mixed
|
||||
* @throws \GuzzleHttp\Exception\GuzzleException
|
||||
*/
|
||||
public function delete($id, $params=[])
|
||||
public function remove($id, $params=[])
|
||||
{
|
||||
return $this->delete("/dcim/rear-port-templates/".$id."/", $params);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ class RearPorts extends AbstractApi
|
|||
* @return mixed
|
||||
* @throws \GuzzleHttp\Exception\GuzzleException
|
||||
*/
|
||||
public function delete($id, $params=[])
|
||||
public function remove($id, $params=[])
|
||||
{
|
||||
return $this->delete("/dcim/rear-ports/".$id."/", $params);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ class Regions extends AbstractApi
|
|||
* @return mixed
|
||||
* @throws \GuzzleHttp\Exception\GuzzleException
|
||||
*/
|
||||
public function delete($id, $params=[])
|
||||
public function remove($id, $params=[])
|
||||
{
|
||||
return $this->delete("/dcim/regions/".$id."/", $params);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ class Sites extends AbstractApi
|
|||
* @return mixed
|
||||
* @throws \GuzzleHttp\Exception\GuzzleException
|
||||
*/
|
||||
public function delete($id, $params=[])
|
||||
public function remove($id, $params=[])
|
||||
{
|
||||
return $this->delete("/dcim/sites/".$id."/", $params);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ class VirtualChassis extends AbstractApi
|
|||
* @return mixed
|
||||
* @throws \GuzzleHttp\Exception\GuzzleException
|
||||
*/
|
||||
public function delete($id, $params=[])
|
||||
public function remove($id, $params=[])
|
||||
{
|
||||
return $this->delete("/dcim/virtual-chassis/".$id."/", $params);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ class ConfigContexts extends AbstractApi
|
|||
* @return mixed
|
||||
* @throws \GuzzleHttp\Exception\GuzzleException
|
||||
*/
|
||||
public function delete($id, $params=[])
|
||||
public function remove($id, $params=[])
|
||||
{
|
||||
return $this->delete("/extras/config-contexts/".$id."/", $params);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ class CustomFields extends AbstractApi
|
|||
* @return mixed
|
||||
* @throws \GuzzleHttp\Exception\GuzzleException
|
||||
*/
|
||||
public function delete($id, $params=[])
|
||||
public function remove($id, $params=[])
|
||||
{
|
||||
return $this->delete("/extras/custom-fields/".$id."/", $params);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ class ExportTemplates extends AbstractApi
|
|||
* @return mixed
|
||||
* @throws \GuzzleHttp\Exception\GuzzleException
|
||||
*/
|
||||
public function delete($id, $params=[])
|
||||
public function remove($id, $params=[])
|
||||
{
|
||||
return $this->delete("/extras/export-templates/".$id."/", $params);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ class ImageAttachments extends AbstractApi
|
|||
* @return mixed
|
||||
* @throws \GuzzleHttp\Exception\GuzzleException
|
||||
*/
|
||||
public function delete($id, $params=[])
|
||||
public function remove($id, $params=[])
|
||||
{
|
||||
return $this->delete("/extras/image-attachments/".$id."/", $params);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ class Tags extends AbstractApi
|
|||
* @return mixed
|
||||
* @throws \GuzzleHttp\Exception\GuzzleException
|
||||
*/
|
||||
public function delete($id, $params=[])
|
||||
public function remove($id, $params=[])
|
||||
{
|
||||
return $this->delete("/extras/tags/".$id."/", $params);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ class Aggregates extends AbstractApi
|
|||
* @return mixed
|
||||
* @throws \GuzzleHttp\Exception\GuzzleException
|
||||
*/
|
||||
public function delete($id, $params=[])
|
||||
public function remove($id, $params=[])
|
||||
{
|
||||
return $this->delete("/ipam/aggregates/".$id."/", $params);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ class IpAddresses extends AbstractApi
|
|||
* @return mixed
|
||||
* @throws \GuzzleHttp\Exception\GuzzleException
|
||||
*/
|
||||
public function delete($id, $params=[])
|
||||
public function remove($id, $params=[])
|
||||
{
|
||||
return $this->delete("/ipam/ip-addresses/".$id."/", $params);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ class Prefixes extends AbstractApi
|
|||
* @return mixed
|
||||
* @throws \GuzzleHttp\Exception\GuzzleException
|
||||
*/
|
||||
public function delete($id, $params=[])
|
||||
public function remove($id, $params=[])
|
||||
{
|
||||
return $this->delete("/ipam/prefixes/".$id."/", $params);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ class Rirs extends AbstractApi
|
|||
* @return mixed
|
||||
* @throws \GuzzleHttp\Exception\GuzzleException
|
||||
*/
|
||||
public function delete($id, $params=[])
|
||||
public function remove($id, $params=[])
|
||||
{
|
||||
return $this->delete("/ipam/rirs/".$id."/", $params);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ class Roles extends AbstractApi
|
|||
* @return mixed
|
||||
* @throws \GuzzleHttp\Exception\GuzzleException
|
||||
*/
|
||||
public function delete($id, $params=[])
|
||||
public function remove($id, $params=[])
|
||||
{
|
||||
return $this->delete("/ipam/roles/".$id."/", $params);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ class RouteTargets extends AbstractApi
|
|||
* @return mixed
|
||||
* @throws \GuzzleHttp\Exception\GuzzleException
|
||||
*/
|
||||
public function delete($id, $params=[])
|
||||
public function remove($id, $params=[])
|
||||
{
|
||||
return $this->delete("/ipam/route-targets/".$id."/", $params);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ class Services extends AbstractApi
|
|||
* @return mixed
|
||||
* @throws \GuzzleHttp\Exception\GuzzleException
|
||||
*/
|
||||
public function delete($id, $params=[])
|
||||
public function remove($id, $params=[])
|
||||
{
|
||||
return $this->delete("/ipam/services/".$id."/", $params);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ class VlanGroups extends AbstractApi
|
|||
* @return mixed
|
||||
* @throws \GuzzleHttp\Exception\GuzzleException
|
||||
*/
|
||||
public function delete($id, $params=[])
|
||||
public function remove($id, $params=[])
|
||||
{
|
||||
return $this->delete("/ipam/vlan-groups/".$id."/", $params);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ class Vlans extends AbstractApi
|
|||
* @return mixed
|
||||
* @throws \GuzzleHttp\Exception\GuzzleException
|
||||
*/
|
||||
public function delete($id, $params=[])
|
||||
public function remove($id, $params=[])
|
||||
{
|
||||
return $this->delete("/ipam/vlans/".$id."/", $params);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ class Vrfs extends AbstractApi
|
|||
* @return mixed
|
||||
* @throws \GuzzleHttp\Exception\GuzzleException
|
||||
*/
|
||||
public function delete($id, $params=[])
|
||||
public function remove($id, $params=[])
|
||||
{
|
||||
return $this->delete("/ipam/vrfs/".$id."/", $params);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ class SecretRoles extends AbstractApi
|
|||
* @return mixed
|
||||
* @throws \GuzzleHttp\Exception\GuzzleException
|
||||
*/
|
||||
public function delete($id, $params=[])
|
||||
public function remove($id, $params=[])
|
||||
{
|
||||
return $this->delete("/secrets/secret-roles/".$id."/", $params);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ class Secrets extends AbstractApi
|
|||
* @return mixed
|
||||
* @throws \GuzzleHttp\Exception\GuzzleException
|
||||
*/
|
||||
public function delete($id, $params=[])
|
||||
public function remove($id, $params=[])
|
||||
{
|
||||
return $this->delete("/secrets/secrets/".$id."/", $params);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ class TenantGroups extends AbstractApi
|
|||
* @return mixed
|
||||
* @throws \GuzzleHttp\Exception\GuzzleException
|
||||
*/
|
||||
public function delete($id, $params=[])
|
||||
public function remove($id, $params=[])
|
||||
{
|
||||
return $this->delete("/tenancy/tenant-groups/".$id."/", $params);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ class Tenants extends AbstractApi
|
|||
* @return mixed
|
||||
* @throws \GuzzleHttp\Exception\GuzzleException
|
||||
*/
|
||||
public function delete($id, $params=[])
|
||||
public function remove($id, $params=[])
|
||||
{
|
||||
return $this->delete("/tenancy/tenants/".$id."/", $params);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ class Groups extends AbstractApi
|
|||
* @return mixed
|
||||
* @throws \GuzzleHttp\Exception\GuzzleException
|
||||
*/
|
||||
public function delete($id, $params=[])
|
||||
public function remove($id, $params=[])
|
||||
{
|
||||
return $this->delete("/users/groups/".$id."/", $params);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ class Permissions extends AbstractApi
|
|||
* @return mixed
|
||||
* @throws \GuzzleHttp\Exception\GuzzleException
|
||||
*/
|
||||
public function delete($id, $params=[])
|
||||
public function remove($id, $params=[])
|
||||
{
|
||||
return $this->delete("/users/permissions/".$id."/", $params);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ class Users extends AbstractApi
|
|||
* @return mixed
|
||||
* @throws \GuzzleHttp\Exception\GuzzleException
|
||||
*/
|
||||
public function delete($id, $params=[])
|
||||
public function remove($id, $params=[])
|
||||
{
|
||||
return $this->delete("/users/users/".$id."/", $params);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ class ClusterGroups extends AbstractApi
|
|||
* @return mixed
|
||||
* @throws \GuzzleHttp\Exception\GuzzleException
|
||||
*/
|
||||
public function delete($id, $params=[])
|
||||
public function remove($id, $params=[])
|
||||
{
|
||||
return $this->delete("/virtualization/cluster-groups/".$id."/", $params);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ class ClusterTypes extends AbstractApi
|
|||
* @return mixed
|
||||
* @throws \GuzzleHttp\Exception\GuzzleException
|
||||
*/
|
||||
public function delete($id, $params=[])
|
||||
public function remove($id, $params=[])
|
||||
{
|
||||
return $this->delete("/virtualization/cluster-types/".$id."/", $params);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ class Clusters extends AbstractApi
|
|||
* @return mixed
|
||||
* @throws \GuzzleHttp\Exception\GuzzleException
|
||||
*/
|
||||
public function delete($id, $params=[])
|
||||
public function remove($id, $params=[])
|
||||
{
|
||||
return $this->delete("/virtualization/clusters/".$id."/", $params);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ class Interfaces extends AbstractApi
|
|||
* @return mixed
|
||||
* @throws \GuzzleHttp\Exception\GuzzleException
|
||||
*/
|
||||
public function delete($id, $params=[])
|
||||
public function remove($id, $params=[])
|
||||
{
|
||||
return $this->delete("/virtualization/interfaces/".$id."/", $params);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ class VirtualMachines extends AbstractApi
|
|||
* @return mixed
|
||||
* @throws \GuzzleHttp\Exception\GuzzleException
|
||||
*/
|
||||
public function delete($id, $params=[])
|
||||
public function remove($id, $params=[])
|
||||
{
|
||||
return $this->delete("/virtualization/virtual-machines/".$id."/", $params);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
editor.link_modal.header
Reference in a new issue