@nirvana-labs/nirvana-mcp 1.18.3 → 1.19.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/package.json +2 -2
- package/server.js +1 -1
- package/server.mjs +1 -1
- package/src/server.ts +1 -1
- package/src/tools/compute/vms/availability/create-vms-compute-availability.ts +22 -1
- package/src/tools/compute/vms/availability/update-vms-compute-availability.ts +8 -1
- package/src/tools/compute/vms/create-compute-vms.ts +21 -0
- package/src/tools/compute/vms/get-compute-vms.ts +1 -1
- package/src/tools/compute/vms/list-compute-vms.ts +1 -1
- package/src/tools/compute/vms/os-images/list-vms-compute-os-images.ts +1 -1
- package/src/tools/compute/vms/update-compute-vms.ts +7 -0
- package/src/tools/compute/vms/volumes/list-vms-compute-volumes.ts +1 -1
- package/src/tools/compute/volumes/availability/create-volumes-compute-availability.ts +8 -1
- package/src/tools/compute/volumes/availability/update-volumes-compute-availability.ts +8 -1
- package/src/tools/compute/volumes/create-compute-volumes.ts +7 -0
- package/src/tools/compute/volumes/get-compute-volumes.ts +1 -1
- package/src/tools/compute/volumes/list-compute-volumes.ts +1 -1
- package/src/tools/compute/volumes/update-compute-volumes.ts +7 -0
- package/src/tools/connect/flux/create-connect-flux.ts +7 -0
- package/src/tools/connect/flux/get-connect-flux.ts +1 -1
- package/src/tools/connect/flux/list-connect-flux.ts +1 -1
- package/src/tools/connect/flux/{providers/list-flux-connect-providers.ts → routes/list-flux-connect-routes.ts} +6 -6
- package/src/tools/connect/flux/update-connect-flux.ts +7 -0
- package/src/tools/index.ts +2 -2
- package/src/tools/networking/firewall-rules/create-networking-firewall-rules.ts +7 -0
- package/src/tools/networking/firewall-rules/get-networking-firewall-rules.ts +1 -1
- package/src/tools/networking/firewall-rules/list-networking-firewall-rules.ts +1 -1
- package/src/tools/networking/firewall-rules/update-networking-firewall-rules.ts +7 -0
- package/src/tools/networking/vpcs/availability/create-vpcs-networking-availability.ts +8 -1
- package/src/tools/networking/vpcs/availability/update-vpcs-networking-availability.ts +8 -1
- package/src/tools/networking/vpcs/create-networking-vpcs.ts +7 -0
- package/src/tools/networking/vpcs/get-networking-vpcs.ts +1 -1
- package/src/tools/networking/vpcs/list-networking-vpcs.ts +1 -1
- package/src/tools/networking/vpcs/update-networking-vpcs.ts +7 -0
- package/src/tools/rpc-nodes/dedicated/get-rpc-nodes-dedicated.ts +1 -1
- package/src/tools/rpc-nodes/dedicated/list-rpc-nodes-dedicated.ts +1 -1
- package/src/tools/rpc-nodes/flex/get-rpc-nodes-flex.ts +1 -1
- package/src/tools/rpc-nodes/flex/list-rpc-nodes-flex.ts +1 -1
- package/src/tools/vektor/balances/list-historical-vektor-balances.ts +1 -1
- package/src/tools/vektor/balances/list-vektor-balances.ts +1 -1
- package/src/tools/vektor/borrow/accounts/list-borrow-vektor-accounts.ts +1 -1
- package/src/tools/vektor/borrow/accounts/list-historical-borrow-vektor-accounts.ts +1 -1
- package/src/tools/vektor/bridge/quotes/list-bridge-vektor-quotes.ts +1 -1
- package/src/tools/vektor/buy/quotes/list-buy-vektor-quotes.ts +1 -1
- package/src/tools/vektor/lock/markets/list-lock-vektor-markets.ts +1 -1
- package/src/tools/vektor/lock/positions/list-lock-vektor-positions.ts +3 -11
- package/src/tools/vektor/prices/list-historical-vektor-prices.ts +1 -1
- package/src/tools/vektor/prices/list-vektor-prices.ts +1 -1
- package/src/tools/vektor/registry/assets/list-registry-vektor-assets.ts +1 -1
- package/src/tools/vektor/registry/blockchains/list-registry-vektor-blockchains.ts +1 -1
- package/src/tools/vektor/registry/borrow-markets/list-registry-vektor-borrow-markets.ts +1 -1
- package/src/tools/vektor/registry/lend-markets/list-registry-vektor-lend-markets.ts +1 -1
- package/src/tools/vektor/registry/lp-pools/list-registry-vektor-lp-pools.ts +1 -1
- package/src/tools/vektor/registry/venues/list-registry-vektor-venues.ts +1 -1
- package/tools/compute/vms/availability/create-vms-compute-availability.d.mts.map +1 -1
- package/tools/compute/vms/availability/create-vms-compute-availability.d.ts.map +1 -1
- package/tools/compute/vms/availability/create-vms-compute-availability.js +22 -1
- package/tools/compute/vms/availability/create-vms-compute-availability.js.map +1 -1
- package/tools/compute/vms/availability/create-vms-compute-availability.mjs +22 -1
- package/tools/compute/vms/availability/create-vms-compute-availability.mjs.map +1 -1
- package/tools/compute/vms/availability/update-vms-compute-availability.d.mts.map +1 -1
- package/tools/compute/vms/availability/update-vms-compute-availability.d.ts.map +1 -1
- package/tools/compute/vms/availability/update-vms-compute-availability.js +8 -1
- package/tools/compute/vms/availability/update-vms-compute-availability.js.map +1 -1
- package/tools/compute/vms/availability/update-vms-compute-availability.mjs +8 -1
- package/tools/compute/vms/availability/update-vms-compute-availability.mjs.map +1 -1
- package/tools/compute/vms/create-compute-vms.d.mts.map +1 -1
- package/tools/compute/vms/create-compute-vms.d.ts.map +1 -1
- package/tools/compute/vms/create-compute-vms.js +21 -0
- package/tools/compute/vms/create-compute-vms.js.map +1 -1
- package/tools/compute/vms/create-compute-vms.mjs +21 -0
- package/tools/compute/vms/create-compute-vms.mjs.map +1 -1
- package/tools/compute/vms/get-compute-vms.js +1 -1
- package/tools/compute/vms/get-compute-vms.js.map +1 -1
- package/tools/compute/vms/get-compute-vms.mjs +1 -1
- package/tools/compute/vms/get-compute-vms.mjs.map +1 -1
- package/tools/compute/vms/list-compute-vms.js +1 -1
- package/tools/compute/vms/list-compute-vms.js.map +1 -1
- package/tools/compute/vms/list-compute-vms.mjs +1 -1
- package/tools/compute/vms/list-compute-vms.mjs.map +1 -1
- package/tools/compute/vms/os-images/list-vms-compute-os-images.js +1 -1
- package/tools/compute/vms/os-images/list-vms-compute-os-images.js.map +1 -1
- package/tools/compute/vms/os-images/list-vms-compute-os-images.mjs +1 -1
- package/tools/compute/vms/os-images/list-vms-compute-os-images.mjs.map +1 -1
- package/tools/compute/vms/update-compute-vms.d.mts.map +1 -1
- package/tools/compute/vms/update-compute-vms.d.ts.map +1 -1
- package/tools/compute/vms/update-compute-vms.js +7 -0
- package/tools/compute/vms/update-compute-vms.js.map +1 -1
- package/tools/compute/vms/update-compute-vms.mjs +7 -0
- package/tools/compute/vms/update-compute-vms.mjs.map +1 -1
- package/tools/compute/vms/volumes/list-vms-compute-volumes.js +1 -1
- package/tools/compute/vms/volumes/list-vms-compute-volumes.js.map +1 -1
- package/tools/compute/vms/volumes/list-vms-compute-volumes.mjs +1 -1
- package/tools/compute/vms/volumes/list-vms-compute-volumes.mjs.map +1 -1
- package/tools/compute/volumes/availability/create-volumes-compute-availability.d.mts.map +1 -1
- package/tools/compute/volumes/availability/create-volumes-compute-availability.d.ts.map +1 -1
- package/tools/compute/volumes/availability/create-volumes-compute-availability.js +8 -1
- package/tools/compute/volumes/availability/create-volumes-compute-availability.js.map +1 -1
- package/tools/compute/volumes/availability/create-volumes-compute-availability.mjs +8 -1
- package/tools/compute/volumes/availability/create-volumes-compute-availability.mjs.map +1 -1
- package/tools/compute/volumes/availability/update-volumes-compute-availability.d.mts.map +1 -1
- package/tools/compute/volumes/availability/update-volumes-compute-availability.d.ts.map +1 -1
- package/tools/compute/volumes/availability/update-volumes-compute-availability.js +8 -1
- package/tools/compute/volumes/availability/update-volumes-compute-availability.js.map +1 -1
- package/tools/compute/volumes/availability/update-volumes-compute-availability.mjs +8 -1
- package/tools/compute/volumes/availability/update-volumes-compute-availability.mjs.map +1 -1
- package/tools/compute/volumes/create-compute-volumes.d.mts.map +1 -1
- package/tools/compute/volumes/create-compute-volumes.d.ts.map +1 -1
- package/tools/compute/volumes/create-compute-volumes.js +7 -0
- package/tools/compute/volumes/create-compute-volumes.js.map +1 -1
- package/tools/compute/volumes/create-compute-volumes.mjs +7 -0
- package/tools/compute/volumes/create-compute-volumes.mjs.map +1 -1
- package/tools/compute/volumes/get-compute-volumes.js +1 -1
- package/tools/compute/volumes/get-compute-volumes.js.map +1 -1
- package/tools/compute/volumes/get-compute-volumes.mjs +1 -1
- package/tools/compute/volumes/get-compute-volumes.mjs.map +1 -1
- package/tools/compute/volumes/list-compute-volumes.js +1 -1
- package/tools/compute/volumes/list-compute-volumes.js.map +1 -1
- package/tools/compute/volumes/list-compute-volumes.mjs +1 -1
- package/tools/compute/volumes/list-compute-volumes.mjs.map +1 -1
- package/tools/compute/volumes/update-compute-volumes.d.mts.map +1 -1
- package/tools/compute/volumes/update-compute-volumes.d.ts.map +1 -1
- package/tools/compute/volumes/update-compute-volumes.js +7 -0
- package/tools/compute/volumes/update-compute-volumes.js.map +1 -1
- package/tools/compute/volumes/update-compute-volumes.mjs +7 -0
- package/tools/compute/volumes/update-compute-volumes.mjs.map +1 -1
- package/tools/connect/flux/create-connect-flux.d.mts.map +1 -1
- package/tools/connect/flux/create-connect-flux.d.ts.map +1 -1
- package/tools/connect/flux/create-connect-flux.js +7 -0
- package/tools/connect/flux/create-connect-flux.js.map +1 -1
- package/tools/connect/flux/create-connect-flux.mjs +7 -0
- package/tools/connect/flux/create-connect-flux.mjs.map +1 -1
- package/tools/connect/flux/get-connect-flux.js +1 -1
- package/tools/connect/flux/get-connect-flux.js.map +1 -1
- package/tools/connect/flux/get-connect-flux.mjs +1 -1
- package/tools/connect/flux/get-connect-flux.mjs.map +1 -1
- package/tools/connect/flux/list-connect-flux.js +1 -1
- package/tools/connect/flux/list-connect-flux.js.map +1 -1
- package/tools/connect/flux/list-connect-flux.mjs +1 -1
- package/tools/connect/flux/list-connect-flux.mjs.map +1 -1
- package/tools/connect/flux/{providers/list-flux-connect-providers.d.ts → routes/list-flux-connect-routes.d.mts} +1 -1
- package/tools/connect/flux/routes/list-flux-connect-routes.d.mts.map +1 -0
- package/tools/connect/flux/{providers/list-flux-connect-providers.d.mts → routes/list-flux-connect-routes.d.ts} +1 -1
- package/tools/connect/flux/routes/list-flux-connect-routes.d.ts.map +1 -0
- package/tools/connect/flux/{providers/list-flux-connect-providers.js → routes/list-flux-connect-routes.js} +7 -7
- package/tools/connect/flux/routes/list-flux-connect-routes.js.map +1 -0
- package/tools/connect/flux/routes/list-flux-connect-routes.mjs +35 -0
- package/tools/connect/flux/routes/list-flux-connect-routes.mjs.map +1 -0
- package/tools/connect/flux/update-connect-flux.d.mts.map +1 -1
- package/tools/connect/flux/update-connect-flux.d.ts.map +1 -1
- package/tools/connect/flux/update-connect-flux.js +7 -0
- package/tools/connect/flux/update-connect-flux.js.map +1 -1
- package/tools/connect/flux/update-connect-flux.mjs +7 -0
- package/tools/connect/flux/update-connect-flux.mjs.map +1 -1
- package/tools/index.js +2 -2
- package/tools/index.js.map +1 -1
- package/tools/index.mjs +2 -2
- package/tools/index.mjs.map +1 -1
- package/tools/networking/firewall-rules/create-networking-firewall-rules.d.mts.map +1 -1
- package/tools/networking/firewall-rules/create-networking-firewall-rules.d.ts.map +1 -1
- package/tools/networking/firewall-rules/create-networking-firewall-rules.js +7 -0
- package/tools/networking/firewall-rules/create-networking-firewall-rules.js.map +1 -1
- package/tools/networking/firewall-rules/create-networking-firewall-rules.mjs +7 -0
- package/tools/networking/firewall-rules/create-networking-firewall-rules.mjs.map +1 -1
- package/tools/networking/firewall-rules/get-networking-firewall-rules.js +1 -1
- package/tools/networking/firewall-rules/get-networking-firewall-rules.js.map +1 -1
- package/tools/networking/firewall-rules/get-networking-firewall-rules.mjs +1 -1
- package/tools/networking/firewall-rules/get-networking-firewall-rules.mjs.map +1 -1
- package/tools/networking/firewall-rules/list-networking-firewall-rules.js +1 -1
- package/tools/networking/firewall-rules/list-networking-firewall-rules.js.map +1 -1
- package/tools/networking/firewall-rules/list-networking-firewall-rules.mjs +1 -1
- package/tools/networking/firewall-rules/list-networking-firewall-rules.mjs.map +1 -1
- package/tools/networking/firewall-rules/update-networking-firewall-rules.d.mts.map +1 -1
- package/tools/networking/firewall-rules/update-networking-firewall-rules.d.ts.map +1 -1
- package/tools/networking/firewall-rules/update-networking-firewall-rules.js +7 -0
- package/tools/networking/firewall-rules/update-networking-firewall-rules.js.map +1 -1
- package/tools/networking/firewall-rules/update-networking-firewall-rules.mjs +7 -0
- package/tools/networking/firewall-rules/update-networking-firewall-rules.mjs.map +1 -1
- package/tools/networking/vpcs/availability/create-vpcs-networking-availability.d.mts.map +1 -1
- package/tools/networking/vpcs/availability/create-vpcs-networking-availability.d.ts.map +1 -1
- package/tools/networking/vpcs/availability/create-vpcs-networking-availability.js +8 -1
- package/tools/networking/vpcs/availability/create-vpcs-networking-availability.js.map +1 -1
- package/tools/networking/vpcs/availability/create-vpcs-networking-availability.mjs +8 -1
- package/tools/networking/vpcs/availability/create-vpcs-networking-availability.mjs.map +1 -1
- package/tools/networking/vpcs/availability/update-vpcs-networking-availability.d.mts.map +1 -1
- package/tools/networking/vpcs/availability/update-vpcs-networking-availability.d.ts.map +1 -1
- package/tools/networking/vpcs/availability/update-vpcs-networking-availability.js +8 -1
- package/tools/networking/vpcs/availability/update-vpcs-networking-availability.js.map +1 -1
- package/tools/networking/vpcs/availability/update-vpcs-networking-availability.mjs +8 -1
- package/tools/networking/vpcs/availability/update-vpcs-networking-availability.mjs.map +1 -1
- package/tools/networking/vpcs/create-networking-vpcs.d.mts.map +1 -1
- package/tools/networking/vpcs/create-networking-vpcs.d.ts.map +1 -1
- package/tools/networking/vpcs/create-networking-vpcs.js +7 -0
- package/tools/networking/vpcs/create-networking-vpcs.js.map +1 -1
- package/tools/networking/vpcs/create-networking-vpcs.mjs +7 -0
- package/tools/networking/vpcs/create-networking-vpcs.mjs.map +1 -1
- package/tools/networking/vpcs/get-networking-vpcs.js +1 -1
- package/tools/networking/vpcs/get-networking-vpcs.js.map +1 -1
- package/tools/networking/vpcs/get-networking-vpcs.mjs +1 -1
- package/tools/networking/vpcs/get-networking-vpcs.mjs.map +1 -1
- package/tools/networking/vpcs/list-networking-vpcs.js +1 -1
- package/tools/networking/vpcs/list-networking-vpcs.js.map +1 -1
- package/tools/networking/vpcs/list-networking-vpcs.mjs +1 -1
- package/tools/networking/vpcs/list-networking-vpcs.mjs.map +1 -1
- package/tools/networking/vpcs/update-networking-vpcs.d.mts.map +1 -1
- package/tools/networking/vpcs/update-networking-vpcs.d.ts.map +1 -1
- package/tools/networking/vpcs/update-networking-vpcs.js +7 -0
- package/tools/networking/vpcs/update-networking-vpcs.js.map +1 -1
- package/tools/networking/vpcs/update-networking-vpcs.mjs +7 -0
- package/tools/networking/vpcs/update-networking-vpcs.mjs.map +1 -1
- package/tools/rpc-nodes/dedicated/get-rpc-nodes-dedicated.js +1 -1
- package/tools/rpc-nodes/dedicated/get-rpc-nodes-dedicated.js.map +1 -1
- package/tools/rpc-nodes/dedicated/get-rpc-nodes-dedicated.mjs +1 -1
- package/tools/rpc-nodes/dedicated/get-rpc-nodes-dedicated.mjs.map +1 -1
- package/tools/rpc-nodes/dedicated/list-rpc-nodes-dedicated.js +1 -1
- package/tools/rpc-nodes/dedicated/list-rpc-nodes-dedicated.js.map +1 -1
- package/tools/rpc-nodes/dedicated/list-rpc-nodes-dedicated.mjs +1 -1
- package/tools/rpc-nodes/dedicated/list-rpc-nodes-dedicated.mjs.map +1 -1
- package/tools/rpc-nodes/flex/get-rpc-nodes-flex.js +1 -1
- package/tools/rpc-nodes/flex/get-rpc-nodes-flex.js.map +1 -1
- package/tools/rpc-nodes/flex/get-rpc-nodes-flex.mjs +1 -1
- package/tools/rpc-nodes/flex/get-rpc-nodes-flex.mjs.map +1 -1
- package/tools/rpc-nodes/flex/list-rpc-nodes-flex.js +1 -1
- package/tools/rpc-nodes/flex/list-rpc-nodes-flex.js.map +1 -1
- package/tools/rpc-nodes/flex/list-rpc-nodes-flex.mjs +1 -1
- package/tools/rpc-nodes/flex/list-rpc-nodes-flex.mjs.map +1 -1
- package/tools/vektor/balances/list-historical-vektor-balances.js +1 -1
- package/tools/vektor/balances/list-historical-vektor-balances.js.map +1 -1
- package/tools/vektor/balances/list-historical-vektor-balances.mjs +1 -1
- package/tools/vektor/balances/list-historical-vektor-balances.mjs.map +1 -1
- package/tools/vektor/balances/list-vektor-balances.js +1 -1
- package/tools/vektor/balances/list-vektor-balances.js.map +1 -1
- package/tools/vektor/balances/list-vektor-balances.mjs +1 -1
- package/tools/vektor/balances/list-vektor-balances.mjs.map +1 -1
- package/tools/vektor/borrow/accounts/list-borrow-vektor-accounts.js +1 -1
- package/tools/vektor/borrow/accounts/list-borrow-vektor-accounts.js.map +1 -1
- package/tools/vektor/borrow/accounts/list-borrow-vektor-accounts.mjs +1 -1
- package/tools/vektor/borrow/accounts/list-borrow-vektor-accounts.mjs.map +1 -1
- package/tools/vektor/borrow/accounts/list-historical-borrow-vektor-accounts.js +1 -1
- package/tools/vektor/borrow/accounts/list-historical-borrow-vektor-accounts.js.map +1 -1
- package/tools/vektor/borrow/accounts/list-historical-borrow-vektor-accounts.mjs +1 -1
- package/tools/vektor/borrow/accounts/list-historical-borrow-vektor-accounts.mjs.map +1 -1
- package/tools/vektor/bridge/quotes/list-bridge-vektor-quotes.js +1 -1
- package/tools/vektor/bridge/quotes/list-bridge-vektor-quotes.js.map +1 -1
- package/tools/vektor/bridge/quotes/list-bridge-vektor-quotes.mjs +1 -1
- package/tools/vektor/bridge/quotes/list-bridge-vektor-quotes.mjs.map +1 -1
- package/tools/vektor/buy/quotes/list-buy-vektor-quotes.js +1 -1
- package/tools/vektor/buy/quotes/list-buy-vektor-quotes.js.map +1 -1
- package/tools/vektor/buy/quotes/list-buy-vektor-quotes.mjs +1 -1
- package/tools/vektor/buy/quotes/list-buy-vektor-quotes.mjs.map +1 -1
- package/tools/vektor/lock/markets/list-lock-vektor-markets.js +1 -1
- package/tools/vektor/lock/markets/list-lock-vektor-markets.js.map +1 -1
- package/tools/vektor/lock/markets/list-lock-vektor-markets.mjs +1 -1
- package/tools/vektor/lock/markets/list-lock-vektor-markets.mjs.map +1 -1
- package/tools/vektor/lock/positions/list-lock-vektor-positions.d.mts.map +1 -1
- package/tools/vektor/lock/positions/list-lock-vektor-positions.d.ts.map +1 -1
- package/tools/vektor/lock/positions/list-lock-vektor-positions.js +3 -9
- package/tools/vektor/lock/positions/list-lock-vektor-positions.js.map +1 -1
- package/tools/vektor/lock/positions/list-lock-vektor-positions.mjs +3 -9
- package/tools/vektor/lock/positions/list-lock-vektor-positions.mjs.map +1 -1
- package/tools/vektor/prices/list-historical-vektor-prices.js +1 -1
- package/tools/vektor/prices/list-historical-vektor-prices.js.map +1 -1
- package/tools/vektor/prices/list-historical-vektor-prices.mjs +1 -1
- package/tools/vektor/prices/list-historical-vektor-prices.mjs.map +1 -1
- package/tools/vektor/prices/list-vektor-prices.js +1 -1
- package/tools/vektor/prices/list-vektor-prices.js.map +1 -1
- package/tools/vektor/prices/list-vektor-prices.mjs +1 -1
- package/tools/vektor/prices/list-vektor-prices.mjs.map +1 -1
- package/tools/vektor/registry/assets/list-registry-vektor-assets.js +1 -1
- package/tools/vektor/registry/assets/list-registry-vektor-assets.js.map +1 -1
- package/tools/vektor/registry/assets/list-registry-vektor-assets.mjs +1 -1
- package/tools/vektor/registry/assets/list-registry-vektor-assets.mjs.map +1 -1
- package/tools/vektor/registry/blockchains/list-registry-vektor-blockchains.js +1 -1
- package/tools/vektor/registry/blockchains/list-registry-vektor-blockchains.js.map +1 -1
- package/tools/vektor/registry/blockchains/list-registry-vektor-blockchains.mjs +1 -1
- package/tools/vektor/registry/blockchains/list-registry-vektor-blockchains.mjs.map +1 -1
- package/tools/vektor/registry/borrow-markets/list-registry-vektor-borrow-markets.js +1 -1
- package/tools/vektor/registry/borrow-markets/list-registry-vektor-borrow-markets.js.map +1 -1
- package/tools/vektor/registry/borrow-markets/list-registry-vektor-borrow-markets.mjs +1 -1
- package/tools/vektor/registry/borrow-markets/list-registry-vektor-borrow-markets.mjs.map +1 -1
- package/tools/vektor/registry/lend-markets/list-registry-vektor-lend-markets.js +1 -1
- package/tools/vektor/registry/lend-markets/list-registry-vektor-lend-markets.js.map +1 -1
- package/tools/vektor/registry/lend-markets/list-registry-vektor-lend-markets.mjs +1 -1
- package/tools/vektor/registry/lend-markets/list-registry-vektor-lend-markets.mjs.map +1 -1
- package/tools/vektor/registry/lp-pools/list-registry-vektor-lp-pools.js +1 -1
- package/tools/vektor/registry/lp-pools/list-registry-vektor-lp-pools.js.map +1 -1
- package/tools/vektor/registry/lp-pools/list-registry-vektor-lp-pools.mjs +1 -1
- package/tools/vektor/registry/lp-pools/list-registry-vektor-lp-pools.mjs.map +1 -1
- package/tools/vektor/registry/venues/list-registry-vektor-venues.js +1 -1
- package/tools/vektor/registry/venues/list-registry-vektor-venues.js.map +1 -1
- package/tools/vektor/registry/venues/list-registry-vektor-venues.mjs +1 -1
- package/tools/vektor/registry/venues/list-registry-vektor-venues.mjs.map +1 -1
- package/tools/connect/flux/providers/list-flux-connect-providers.d.mts.map +0 -1
- package/tools/connect/flux/providers/list-flux-connect-providers.d.ts.map +0 -1
- package/tools/connect/flux/providers/list-flux-connect-providers.js.map +0 -1
- package/tools/connect/flux/providers/list-flux-connect-providers.mjs +0 -35
- package/tools/connect/flux/providers/list-flux-connect-providers.mjs.map +0 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-compute-vms.mjs","sourceRoot":"","sources":["../../../src/tools/compute/vms/create-compute-vms.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"create-compute-vms.mjs","sourceRoot":"","sources":["../../../src/tools/compute/vms/create-compute-vms.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAE,WAAW,EAAE,MAAM,qCAAqC;OAC1D,EAAY,mBAAmB,EAAE,MAAM,uCAAuC;AAKrF,MAAM,CAAC,MAAM,QAAQ,GAAa;IAChC,QAAQ,EAAE,aAAa;IACvB,SAAS,EAAE,OAAO;IAClB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,MAAM;IAClB,QAAQ,EAAE,iBAAiB;IAC3B,WAAW,EAAE,WAAW;CACzB,CAAC;AAEF,MAAM,CAAC,MAAM,IAAI,GAAS;IACxB,IAAI,EAAE,oBAAoB;IAC1B,WAAW,EACT,m5DAAm5D;IACr5D,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,WAAW,EAAE;gBACX,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,yBAAyB;gBACtC,UAAU,EAAE;oBACV,IAAI,EAAE;wBACJ,IAAI,EAAE,SAAS;wBACf,WAAW,EAAE,2BAA2B;qBACzC;oBACD,IAAI,EAAE;wBACJ,IAAI,EAAE,OAAO;wBACb,WAAW,EAAE,+BAA+B;wBAC5C,KAAK,EAAE;4BACL,IAAI,EAAE,QAAQ;yBACf;qBACF;iBACF;gBACD,QAAQ,EAAE,CAAC,MAAM,CAAC;aACnB;YACD,UAAU,EAAE;gBACV,IAAI,EAAE,4BAA4B;aACnC;YACD,aAAa,EAAE;gBACb,IAAI,EAAE,+BAA+B;aACtC;YACD,IAAI,EAAE;gBACJ,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,iBAAiB;aAC/B;YACD,aAAa,EAAE;gBACb,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,yCAAyC;aACvD;YACD,iBAAiB,EAAE;gBACjB,IAAI,EAAE,SAAS;gBACf,WAAW,EAAE,yCAAyC;aACvD;YACD,MAAM,EAAE;gBACN,IAAI,EAAE,qBAAqB;aAC5B;YACD,OAAO,EAAE;gBACP,IAAI,EAAE,yBAAyB;aAChC;YACD,SAAS,EAAE;gBACT,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,qCAAqC;aACnD;YACD,YAAY,EAAE;gBACZ,IAAI,EAAE,OAAO;gBACb,WAAW,EAAE,0BAA0B;gBACvC,KAAK,EAAE;oBACL,IAAI,EAAE,QAAQ;oBACd,WAAW,EAAE,gCAAgC;oBAC7C,UAAU,EAAE;wBACV,IAAI,EAAE;4BACJ,IAAI,EAAE,QAAQ;4BACd,WAAW,EAAE,qBAAqB;yBACnC;wBACD,IAAI,EAAE;4BACJ,IAAI,EAAE,SAAS;4BACf,WAAW,EAAE,2BAA2B;yBACzC;wBACD,IAAI,EAAE;4BACJ,IAAI,EAAE,OAAO;4BACb,WAAW,EAAE,+BAA+B;4BAC5C,KAAK,EAAE;gCACL,IAAI,EAAE,QAAQ;6BACf;yBACF;qBACF;oBACD,QAAQ,EAAE,CAAC,MAAM,EAAE,MAAM,CAAC;iBAC3B;aACF;YACD,IAAI,EAAE;gBACJ,IAAI,EAAE,OAAO;gBACb,WAAW,EAAE,2BAA2B;gBACxC,KAAK,EAAE;oBACL,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,SAAS,EAAE;gBACT,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,WAAW;gBAClB,WAAW,EACT,kWAAkW;aACrW;SACF;QACD,QAAQ,EAAE;YACR,aAAa;YACb,YAAY;YACZ,eAAe;YACf,MAAM;YACN,eAAe;YACf,mBAAmB;YACnB,QAAQ;YACR,SAAS;YACT,WAAW;SACZ;QACD,KAAK,EAAE;YACL,kBAAkB,EAAE;gBAClB,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,+BAA+B;gBAC5C,UAAU,EAAE;oBACV,IAAI,EAAE;wBACJ,IAAI,EAAE,SAAS;wBACf,WAAW,EAAE,yBAAyB;qBACvC;iBACF;gBACD,QAAQ,EAAE,CAAC,MAAM,CAAC;aACnB;YACD,qBAAqB,EAAE;gBACrB,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,kCAAkC;gBAC/C,UAAU,EAAE;oBACV,IAAI,EAAE;wBACJ,IAAI,EAAE,SAAS;wBACf,WAAW,EAAE,2BAA2B;qBACzC;iBACF;gBACD,QAAQ,EAAE,CAAC,MAAM,CAAC;aACnB;YACD,WAAW,EAAE;gBACX,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,4BAA4B;gBACzC,IAAI,EAAE;oBACJ,UAAU;oBACV,UAAU;oBACV,UAAU;oBACV,UAAU;oBACV,UAAU;oBACV,UAAU;oBACV,UAAU;oBACV,UAAU;iBACX;aACF;YACD,eAAe,EAAE;gBACf,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,0CAA0C;gBACvD,UAAU,EAAE;oBACV,UAAU,EAAE;wBACV,IAAI,EAAE,QAAQ;wBACd,WAAW,EAAE,6CAA6C;qBAC3D;iBACF;gBACD,QAAQ,EAAE,CAAC,YAAY,CAAC;aACzB;SACF;KACF;IACD,WAAW,EAAE,EAAE;CAChB,CAAC;AAEF,MAAM,CAAC,MAAM,OAAO,GAAG,KAAK,EAAE,MAAmB,EAAE,IAAyC,EAAE,EAAE;IAC9F,MAAM,EAAE,SAAS,EAAE,GAAG,IAAI,EAAE,GAAG,IAAW,CAAC;IAC3C,OAAO,mBAAmB,CAAC,MAAM,WAAW,CAAC,SAAS,EAAE,MAAM,MAAM,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;AAClG,CAAC,CAAC;AAEF,eAAe,EAAE,QAAQ,EAAE,IAAI,EAAE,OAAO,EAAE,CAAC"}
|
|
@@ -14,7 +14,7 @@ exports.metadata = {
|
|
|
14
14
|
};
|
|
15
15
|
exports.tool = {
|
|
16
16
|
name: 'get_compute_vms',
|
|
17
|
-
description: "When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nGet details about a VM\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/vm',\n $defs: {\n vm: {\n type: 'object',\n description: 'VM details.',\n properties: {\n id: {\n type: 'string',\n description: 'Unique identifier for the VM.'\n },\n boot_volume_id: {\n type: 'string',\n description: 'ID of the boot volume attached to the VM.'\n },\n cpu_config: {\n $ref: '#/$defs/cpu_config'\n },\n created_at: {\n type: 'string',\n description: 'When the VM was created.',\n format: 'date-time'\n },\n data_volume_ids: {\n type: 'array',\n description: 'IDs of the data volumes attached to the VM.',\n items: {\n type: 'string'\n }\n },\n memory_config: {\n $ref: '#/$defs/memory_config'\n },\n name: {\n type: 'string',\n description: 'Name of the VM.'\n },\n private_ip: {\n type: 'string',\n description: 'Private IP of the VM.'\n },\n public_ip: {\n type: 'string',\n description: 'Public IP of the VM.'\n },\n public_ip_enabled: {\n type: 'boolean',\n description: 'Whether the public IP is enabled for the VM.'\n },\n region: {\n $ref: '#/$defs/region_name'\n },\n status: {\n $ref: '#/$defs/resource_status'\n },\n subnet_id: {\n type: 'string',\n description: 'ID of the subnet the VM is in.'\n },\n updated_at: {\n type: 'string',\n description: 'When the VM was updated.',\n format: 'date-time'\n },\n vpc_id: {\n type: 'string',\n description: 'ID of the VPC the VM is in.'\n },\n vpc_name: {\n type: 'string',\n description: 'Name of the VPC the VM is in.'\n }\n },\n required: [ 'id',\n 'boot_volume_id',\n 'cpu_config',\n 'created_at',\n 'data_volume_ids',\n 'memory_config',\n 'name',\n 'private_ip',\n 'public_ip',\n 'public_ip_enabled',\n 'region',\n 'status',\n 'subnet_id',\n 'updated_at',\n 'vpc_id',\n 'vpc_name'\n ]\n },\n cpu_config: {\n type: 'object',\n description: 'CPU configuration for the VM.',\n properties: {\n vcpu: {\n type: 'integer',\n description: 'Number of virtual CPUs.'\n }\n },\n required: [ 'vcpu'\n ]\n },\n memory_config: {\n type: 'object',\n description: 'Memory configuration for the VM.',\n properties: {\n size: {\n type: 'integer',\n description: 'Size of the memory in GB.'\n }\n },\n required: [ 'size'\n ]\n },\n region_name: {\n type: 'string',\n description: 'Region the resource is in.',\n enum: [ 'us-sea-1',\n 'us-sva-1',\n 'us-chi-1',\n 'us-wdc-1',\n 'eu-frk-1',\n 'ap-sin-1',\n 'ap-seo-1',\n 'ap-tyo-1'\n ]\n },\n resource_status: {\n type: 'string',\n description: 'Status of the resource.',\n enum: [ 'pending',\n 'creating',\n 'updating',\n 'ready',\n 'deleting',\n 'deleted',\n 'error'\n ]\n }\n }\n}\n```",
|
|
17
|
+
description: "When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nGet details about a VM\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/vm',\n $defs: {\n vm: {\n type: 'object',\n description: 'VM details.',\n properties: {\n id: {\n type: 'string',\n description: 'Unique identifier for the VM.'\n },\n boot_volume_id: {\n type: 'string',\n description: 'ID of the boot volume attached to the VM.'\n },\n cpu_config: {\n $ref: '#/$defs/cpu_config'\n },\n created_at: {\n type: 'string',\n description: 'When the VM was created.',\n format: 'date-time'\n },\n data_volume_ids: {\n type: 'array',\n description: 'IDs of the data volumes attached to the VM.',\n items: {\n type: 'string'\n }\n },\n memory_config: {\n $ref: '#/$defs/memory_config'\n },\n name: {\n type: 'string',\n description: 'Name of the VM.'\n },\n private_ip: {\n type: 'string',\n description: 'Private IP of the VM.'\n },\n public_ip: {\n type: 'string',\n description: 'Public IP of the VM.'\n },\n public_ip_enabled: {\n type: 'boolean',\n description: 'Whether the public IP is enabled for the VM.'\n },\n region: {\n $ref: '#/$defs/region_name'\n },\n status: {\n $ref: '#/$defs/resource_status'\n },\n subnet_id: {\n type: 'string',\n description: 'ID of the subnet the VM is in.'\n },\n tags: {\n type: 'array',\n description: 'Tags to attach to the VM.',\n items: {\n type: 'string'\n }\n },\n updated_at: {\n type: 'string',\n description: 'When the VM was updated.',\n format: 'date-time'\n },\n vpc_id: {\n type: 'string',\n description: 'ID of the VPC the VM is in.'\n },\n vpc_name: {\n type: 'string',\n description: 'Name of the VPC the VM is in.'\n }\n },\n required: [ 'id',\n 'boot_volume_id',\n 'cpu_config',\n 'created_at',\n 'data_volume_ids',\n 'memory_config',\n 'name',\n 'private_ip',\n 'public_ip',\n 'public_ip_enabled',\n 'region',\n 'status',\n 'subnet_id',\n 'tags',\n 'updated_at',\n 'vpc_id',\n 'vpc_name'\n ]\n },\n cpu_config: {\n type: 'object',\n description: 'CPU configuration for the VM.',\n properties: {\n vcpu: {\n type: 'integer',\n description: 'Number of virtual CPUs.'\n }\n },\n required: [ 'vcpu'\n ]\n },\n memory_config: {\n type: 'object',\n description: 'Memory configuration for the VM.',\n properties: {\n size: {\n type: 'integer',\n description: 'Size of the memory in GB.'\n }\n },\n required: [ 'size'\n ]\n },\n region_name: {\n type: 'string',\n description: 'Region the resource is in.',\n enum: [ 'us-sea-1',\n 'us-sva-1',\n 'us-chi-1',\n 'us-wdc-1',\n 'eu-frk-1',\n 'ap-sin-1',\n 'ap-seo-1',\n 'ap-tyo-1'\n ]\n },\n resource_status: {\n type: 'string',\n description: 'Status of the resource.',\n enum: [ 'pending',\n 'creating',\n 'updating',\n 'ready',\n 'deleting',\n 'deleted',\n 'error'\n ]\n }\n }\n}\n```",
|
|
18
18
|
inputSchema: {
|
|
19
19
|
type: 'object',
|
|
20
20
|
properties: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-compute-vms.js","sourceRoot":"","sources":["../../../src/tools/compute/vms/get-compute-vms.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,mEAAkE;AAClE,iEAAsF;AAKzE,QAAA,QAAQ,GAAa;IAChC,QAAQ,EAAE,aAAa;IACvB,SAAS,EAAE,MAAM;IACjB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,KAAK;IACjB,QAAQ,EAAE,yBAAyB;IACnC,WAAW,EAAE,QAAQ;CACtB,CAAC;AAEW,QAAA,IAAI,GAAS;IACxB,IAAI,EAAE,iBAAiB;IACvB,WAAW,EACT,
|
|
1
|
+
{"version":3,"file":"get-compute-vms.js","sourceRoot":"","sources":["../../../src/tools/compute/vms/get-compute-vms.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,mEAAkE;AAClE,iEAAsF;AAKzE,QAAA,QAAQ,GAAa;IAChC,QAAQ,EAAE,aAAa;IACvB,SAAS,EAAE,MAAM;IACjB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,KAAK;IACjB,QAAQ,EAAE,yBAAyB;IACnC,WAAW,EAAE,QAAQ;CACtB,CAAC;AAEW,QAAA,IAAI,GAAS;IACxB,IAAI,EAAE,iBAAiB;IACvB,WAAW,EACT,8zHAA8zH;IACh0H,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,KAAK,EAAE;gBACL,IAAI,EAAE,QAAQ;aACf;YACD,SAAS,EAAE;gBACT,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,WAAW;gBAClB,WAAW,EACT,kWAAkW;aACrW;SACF;QACD,QAAQ,EAAE,CAAC,OAAO,CAAC;KACpB;IACD,WAAW,EAAE;QACX,YAAY,EAAE,IAAI;KACnB;CACF,CAAC;AAEK,MAAM,OAAO,GAAG,KAAK,EAAE,MAAmB,EAAE,IAAyC,EAAE,EAAE;IAC9F,MAAM,EAAE,KAAK,EAAE,SAAS,EAAE,GAAG,IAAI,EAAE,GAAG,IAAW,CAAC;IAClD,OAAO,IAAA,2BAAmB,EAAC,MAAM,IAAA,uBAAW,EAAC,SAAS,EAAE,MAAM,MAAM,CAAC,OAAO,CAAC,GAAG,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;AAChG,CAAC,CAAC;AAHW,QAAA,OAAO,WAGlB;AAEF,kBAAe,EAAE,QAAQ,EAAR,gBAAQ,EAAE,IAAI,EAAJ,YAAI,EAAE,OAAO,EAAP,eAAO,EAAE,CAAC"}
|
|
@@ -11,7 +11,7 @@ export const metadata = {
|
|
|
11
11
|
};
|
|
12
12
|
export const tool = {
|
|
13
13
|
name: 'get_compute_vms',
|
|
14
|
-
description: "When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nGet details about a VM\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/vm',\n $defs: {\n vm: {\n type: 'object',\n description: 'VM details.',\n properties: {\n id: {\n type: 'string',\n description: 'Unique identifier for the VM.'\n },\n boot_volume_id: {\n type: 'string',\n description: 'ID of the boot volume attached to the VM.'\n },\n cpu_config: {\n $ref: '#/$defs/cpu_config'\n },\n created_at: {\n type: 'string',\n description: 'When the VM was created.',\n format: 'date-time'\n },\n data_volume_ids: {\n type: 'array',\n description: 'IDs of the data volumes attached to the VM.',\n items: {\n type: 'string'\n }\n },\n memory_config: {\n $ref: '#/$defs/memory_config'\n },\n name: {\n type: 'string',\n description: 'Name of the VM.'\n },\n private_ip: {\n type: 'string',\n description: 'Private IP of the VM.'\n },\n public_ip: {\n type: 'string',\n description: 'Public IP of the VM.'\n },\n public_ip_enabled: {\n type: 'boolean',\n description: 'Whether the public IP is enabled for the VM.'\n },\n region: {\n $ref: '#/$defs/region_name'\n },\n status: {\n $ref: '#/$defs/resource_status'\n },\n subnet_id: {\n type: 'string',\n description: 'ID of the subnet the VM is in.'\n },\n updated_at: {\n type: 'string',\n description: 'When the VM was updated.',\n format: 'date-time'\n },\n vpc_id: {\n type: 'string',\n description: 'ID of the VPC the VM is in.'\n },\n vpc_name: {\n type: 'string',\n description: 'Name of the VPC the VM is in.'\n }\n },\n required: [ 'id',\n 'boot_volume_id',\n 'cpu_config',\n 'created_at',\n 'data_volume_ids',\n 'memory_config',\n 'name',\n 'private_ip',\n 'public_ip',\n 'public_ip_enabled',\n 'region',\n 'status',\n 'subnet_id',\n 'updated_at',\n 'vpc_id',\n 'vpc_name'\n ]\n },\n cpu_config: {\n type: 'object',\n description: 'CPU configuration for the VM.',\n properties: {\n vcpu: {\n type: 'integer',\n description: 'Number of virtual CPUs.'\n }\n },\n required: [ 'vcpu'\n ]\n },\n memory_config: {\n type: 'object',\n description: 'Memory configuration for the VM.',\n properties: {\n size: {\n type: 'integer',\n description: 'Size of the memory in GB.'\n }\n },\n required: [ 'size'\n ]\n },\n region_name: {\n type: 'string',\n description: 'Region the resource is in.',\n enum: [ 'us-sea-1',\n 'us-sva-1',\n 'us-chi-1',\n 'us-wdc-1',\n 'eu-frk-1',\n 'ap-sin-1',\n 'ap-seo-1',\n 'ap-tyo-1'\n ]\n },\n resource_status: {\n type: 'string',\n description: 'Status of the resource.',\n enum: [ 'pending',\n 'creating',\n 'updating',\n 'ready',\n 'deleting',\n 'deleted',\n 'error'\n ]\n }\n }\n}\n```",
|
|
14
|
+
description: "When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nGet details about a VM\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/vm',\n $defs: {\n vm: {\n type: 'object',\n description: 'VM details.',\n properties: {\n id: {\n type: 'string',\n description: 'Unique identifier for the VM.'\n },\n boot_volume_id: {\n type: 'string',\n description: 'ID of the boot volume attached to the VM.'\n },\n cpu_config: {\n $ref: '#/$defs/cpu_config'\n },\n created_at: {\n type: 'string',\n description: 'When the VM was created.',\n format: 'date-time'\n },\n data_volume_ids: {\n type: 'array',\n description: 'IDs of the data volumes attached to the VM.',\n items: {\n type: 'string'\n }\n },\n memory_config: {\n $ref: '#/$defs/memory_config'\n },\n name: {\n type: 'string',\n description: 'Name of the VM.'\n },\n private_ip: {\n type: 'string',\n description: 'Private IP of the VM.'\n },\n public_ip: {\n type: 'string',\n description: 'Public IP of the VM.'\n },\n public_ip_enabled: {\n type: 'boolean',\n description: 'Whether the public IP is enabled for the VM.'\n },\n region: {\n $ref: '#/$defs/region_name'\n },\n status: {\n $ref: '#/$defs/resource_status'\n },\n subnet_id: {\n type: 'string',\n description: 'ID of the subnet the VM is in.'\n },\n tags: {\n type: 'array',\n description: 'Tags to attach to the VM.',\n items: {\n type: 'string'\n }\n },\n updated_at: {\n type: 'string',\n description: 'When the VM was updated.',\n format: 'date-time'\n },\n vpc_id: {\n type: 'string',\n description: 'ID of the VPC the VM is in.'\n },\n vpc_name: {\n type: 'string',\n description: 'Name of the VPC the VM is in.'\n }\n },\n required: [ 'id',\n 'boot_volume_id',\n 'cpu_config',\n 'created_at',\n 'data_volume_ids',\n 'memory_config',\n 'name',\n 'private_ip',\n 'public_ip',\n 'public_ip_enabled',\n 'region',\n 'status',\n 'subnet_id',\n 'tags',\n 'updated_at',\n 'vpc_id',\n 'vpc_name'\n ]\n },\n cpu_config: {\n type: 'object',\n description: 'CPU configuration for the VM.',\n properties: {\n vcpu: {\n type: 'integer',\n description: 'Number of virtual CPUs.'\n }\n },\n required: [ 'vcpu'\n ]\n },\n memory_config: {\n type: 'object',\n description: 'Memory configuration for the VM.',\n properties: {\n size: {\n type: 'integer',\n description: 'Size of the memory in GB.'\n }\n },\n required: [ 'size'\n ]\n },\n region_name: {\n type: 'string',\n description: 'Region the resource is in.',\n enum: [ 'us-sea-1',\n 'us-sva-1',\n 'us-chi-1',\n 'us-wdc-1',\n 'eu-frk-1',\n 'ap-sin-1',\n 'ap-seo-1',\n 'ap-tyo-1'\n ]\n },\n resource_status: {\n type: 'string',\n description: 'Status of the resource.',\n enum: [ 'pending',\n 'creating',\n 'updating',\n 'ready',\n 'deleting',\n 'deleted',\n 'error'\n ]\n }\n }\n}\n```",
|
|
15
15
|
inputSchema: {
|
|
16
16
|
type: 'object',
|
|
17
17
|
properties: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-compute-vms.mjs","sourceRoot":"","sources":["../../../src/tools/compute/vms/get-compute-vms.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAE,WAAW,EAAE,MAAM,qCAAqC;OAC1D,EAAY,mBAAmB,EAAE,MAAM,uCAAuC;AAKrF,MAAM,CAAC,MAAM,QAAQ,GAAa;IAChC,QAAQ,EAAE,aAAa;IACvB,SAAS,EAAE,MAAM;IACjB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,KAAK;IACjB,QAAQ,EAAE,yBAAyB;IACnC,WAAW,EAAE,QAAQ;CACtB,CAAC;AAEF,MAAM,CAAC,MAAM,IAAI,GAAS;IACxB,IAAI,EAAE,iBAAiB;IACvB,WAAW,EACT,
|
|
1
|
+
{"version":3,"file":"get-compute-vms.mjs","sourceRoot":"","sources":["../../../src/tools/compute/vms/get-compute-vms.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAE,WAAW,EAAE,MAAM,qCAAqC;OAC1D,EAAY,mBAAmB,EAAE,MAAM,uCAAuC;AAKrF,MAAM,CAAC,MAAM,QAAQ,GAAa;IAChC,QAAQ,EAAE,aAAa;IACvB,SAAS,EAAE,MAAM;IACjB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,KAAK;IACjB,QAAQ,EAAE,yBAAyB;IACnC,WAAW,EAAE,QAAQ;CACtB,CAAC;AAEF,MAAM,CAAC,MAAM,IAAI,GAAS;IACxB,IAAI,EAAE,iBAAiB;IACvB,WAAW,EACT,8zHAA8zH;IACh0H,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,KAAK,EAAE;gBACL,IAAI,EAAE,QAAQ;aACf;YACD,SAAS,EAAE;gBACT,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,WAAW;gBAClB,WAAW,EACT,kWAAkW;aACrW;SACF;QACD,QAAQ,EAAE,CAAC,OAAO,CAAC;KACpB;IACD,WAAW,EAAE;QACX,YAAY,EAAE,IAAI;KACnB;CACF,CAAC;AAEF,MAAM,CAAC,MAAM,OAAO,GAAG,KAAK,EAAE,MAAmB,EAAE,IAAyC,EAAE,EAAE;IAC9F,MAAM,EAAE,KAAK,EAAE,SAAS,EAAE,GAAG,IAAI,EAAE,GAAG,IAAW,CAAC;IAClD,OAAO,mBAAmB,CAAC,MAAM,WAAW,CAAC,SAAS,EAAE,MAAM,MAAM,CAAC,OAAO,CAAC,GAAG,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;AAChG,CAAC,CAAC;AAEF,eAAe,EAAE,QAAQ,EAAE,IAAI,EAAE,OAAO,EAAE,CAAC"}
|
|
@@ -14,7 +14,7 @@ exports.metadata = {
|
|
|
14
14
|
};
|
|
15
15
|
exports.tool = {
|
|
16
16
|
name: 'list_compute_vms',
|
|
17
|
-
description: "When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nList all VMs\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/vm_list',\n $defs: {\n vm_list: {\n type: 'object',\n properties: {\n items: {\n type: 'array',\n items: {\n $ref: '#/$defs/vm'\n }\n }\n },\n required: [ 'items'\n ]\n },\n vm: {\n type: 'object',\n description: 'VM details.',\n properties: {\n id: {\n type: 'string',\n description: 'Unique identifier for the VM.'\n },\n boot_volume_id: {\n type: 'string',\n description: 'ID of the boot volume attached to the VM.'\n },\n cpu_config: {\n $ref: '#/$defs/cpu_config'\n },\n created_at: {\n type: 'string',\n description: 'When the VM was created.',\n format: 'date-time'\n },\n data_volume_ids: {\n type: 'array',\n description: 'IDs of the data volumes attached to the VM.',\n items: {\n type: 'string'\n }\n },\n memory_config: {\n $ref: '#/$defs/memory_config'\n },\n name: {\n type: 'string',\n description: 'Name of the VM.'\n },\n private_ip: {\n type: 'string',\n description: 'Private IP of the VM.'\n },\n public_ip: {\n type: 'string',\n description: 'Public IP of the VM.'\n },\n public_ip_enabled: {\n type: 'boolean',\n description: 'Whether the public IP is enabled for the VM.'\n },\n region: {\n $ref: '#/$defs/region_name'\n },\n status: {\n $ref: '#/$defs/resource_status'\n },\n subnet_id: {\n type: 'string',\n description: 'ID of the subnet the VM is in.'\n },\n updated_at: {\n type: 'string',\n description: 'When the VM was updated.',\n format: 'date-time'\n },\n vpc_id: {\n type: 'string',\n description: 'ID of the VPC the VM is in.'\n },\n vpc_name: {\n type: 'string',\n description: 'Name of the VPC the VM is in.'\n }\n },\n required: [ 'id',\n 'boot_volume_id',\n 'cpu_config',\n 'created_at',\n 'data_volume_ids',\n 'memory_config',\n 'name',\n 'private_ip',\n 'public_ip',\n 'public_ip_enabled',\n 'region',\n 'status',\n 'subnet_id',\n 'updated_at',\n 'vpc_id',\n 'vpc_name'\n ]\n },\n cpu_config: {\n type: 'object',\n description: 'CPU configuration for the VM.',\n properties: {\n vcpu: {\n type: 'integer',\n description: 'Number of virtual CPUs.'\n }\n },\n required: [ 'vcpu'\n ]\n },\n memory_config: {\n type: 'object',\n description: 'Memory configuration for the VM.',\n properties: {\n size: {\n type: 'integer',\n description: 'Size of the memory in GB.'\n }\n },\n required: [ 'size'\n ]\n },\n region_name: {\n type: 'string',\n description: 'Region the resource is in.',\n enum: [ 'us-sea-1',\n 'us-sva-1',\n 'us-chi-1',\n 'us-wdc-1',\n 'eu-frk-1',\n 'ap-sin-1',\n 'ap-seo-1',\n 'ap-tyo-1'\n ]\n },\n resource_status: {\n type: 'string',\n description: 'Status of the resource.',\n enum: [ 'pending',\n 'creating',\n 'updating',\n 'ready',\n 'deleting',\n 'deleted',\n 'error'\n ]\n }\n }\n}\n```",
|
|
17
|
+
description: "When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nList all VMs\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/vm_list',\n $defs: {\n vm_list: {\n type: 'object',\n properties: {\n items: {\n type: 'array',\n items: {\n $ref: '#/$defs/vm'\n }\n }\n },\n required: [ 'items'\n ]\n },\n vm: {\n type: 'object',\n description: 'VM details.',\n properties: {\n id: {\n type: 'string',\n description: 'Unique identifier for the VM.'\n },\n boot_volume_id: {\n type: 'string',\n description: 'ID of the boot volume attached to the VM.'\n },\n cpu_config: {\n $ref: '#/$defs/cpu_config'\n },\n created_at: {\n type: 'string',\n description: 'When the VM was created.',\n format: 'date-time'\n },\n data_volume_ids: {\n type: 'array',\n description: 'IDs of the data volumes attached to the VM.',\n items: {\n type: 'string'\n }\n },\n memory_config: {\n $ref: '#/$defs/memory_config'\n },\n name: {\n type: 'string',\n description: 'Name of the VM.'\n },\n private_ip: {\n type: 'string',\n description: 'Private IP of the VM.'\n },\n public_ip: {\n type: 'string',\n description: 'Public IP of the VM.'\n },\n public_ip_enabled: {\n type: 'boolean',\n description: 'Whether the public IP is enabled for the VM.'\n },\n region: {\n $ref: '#/$defs/region_name'\n },\n status: {\n $ref: '#/$defs/resource_status'\n },\n subnet_id: {\n type: 'string',\n description: 'ID of the subnet the VM is in.'\n },\n tags: {\n type: 'array',\n description: 'Tags to attach to the VM.',\n items: {\n type: 'string'\n }\n },\n updated_at: {\n type: 'string',\n description: 'When the VM was updated.',\n format: 'date-time'\n },\n vpc_id: {\n type: 'string',\n description: 'ID of the VPC the VM is in.'\n },\n vpc_name: {\n type: 'string',\n description: 'Name of the VPC the VM is in.'\n }\n },\n required: [ 'id',\n 'boot_volume_id',\n 'cpu_config',\n 'created_at',\n 'data_volume_ids',\n 'memory_config',\n 'name',\n 'private_ip',\n 'public_ip',\n 'public_ip_enabled',\n 'region',\n 'status',\n 'subnet_id',\n 'tags',\n 'updated_at',\n 'vpc_id',\n 'vpc_name'\n ]\n },\n cpu_config: {\n type: 'object',\n description: 'CPU configuration for the VM.',\n properties: {\n vcpu: {\n type: 'integer',\n description: 'Number of virtual CPUs.'\n }\n },\n required: [ 'vcpu'\n ]\n },\n memory_config: {\n type: 'object',\n description: 'Memory configuration for the VM.',\n properties: {\n size: {\n type: 'integer',\n description: 'Size of the memory in GB.'\n }\n },\n required: [ 'size'\n ]\n },\n region_name: {\n type: 'string',\n description: 'Region the resource is in.',\n enum: [ 'us-sea-1',\n 'us-sva-1',\n 'us-chi-1',\n 'us-wdc-1',\n 'eu-frk-1',\n 'ap-sin-1',\n 'ap-seo-1',\n 'ap-tyo-1'\n ]\n },\n resource_status: {\n type: 'string',\n description: 'Status of the resource.',\n enum: [ 'pending',\n 'creating',\n 'updating',\n 'ready',\n 'deleting',\n 'deleted',\n 'error'\n ]\n }\n }\n}\n```",
|
|
18
18
|
inputSchema: {
|
|
19
19
|
type: 'object',
|
|
20
20
|
properties: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-compute-vms.js","sourceRoot":"","sources":["../../../src/tools/compute/vms/list-compute-vms.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,mEAAkE;AAClE,iEAAsF;AAKzE,QAAA,QAAQ,GAAa;IAChC,QAAQ,EAAE,aAAa;IACvB,SAAS,EAAE,MAAM;IACjB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,KAAK;IACjB,QAAQ,EAAE,iBAAiB;IAC3B,WAAW,EAAE,UAAU;CACxB,CAAC;AAEW,QAAA,IAAI,GAAS;IACxB,IAAI,EAAE,kBAAkB;IACxB,WAAW,EACT,
|
|
1
|
+
{"version":3,"file":"list-compute-vms.js","sourceRoot":"","sources":["../../../src/tools/compute/vms/list-compute-vms.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,mEAAkE;AAClE,iEAAsF;AAKzE,QAAA,QAAQ,GAAa;IAChC,QAAQ,EAAE,aAAa;IACvB,SAAS,EAAE,MAAM;IACjB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,KAAK;IACjB,QAAQ,EAAE,iBAAiB;IAC3B,WAAW,EAAE,UAAU;CACxB,CAAC;AAEW,QAAA,IAAI,GAAS;IACxB,IAAI,EAAE,kBAAkB;IACxB,WAAW,EACT,0iIAA0iI;IAC5iI,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,SAAS,EAAE;gBACT,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,WAAW;gBAClB,WAAW,EACT,kWAAkW;aACrW;SACF;QACD,QAAQ,EAAE,EAAE;KACb;IACD,WAAW,EAAE;QACX,YAAY,EAAE,IAAI;KACnB;CACF,CAAC;AAEK,MAAM,OAAO,GAAG,KAAK,EAAE,MAAmB,EAAE,IAAyC,EAAE,EAAE;IAC9F,MAAM,EAAE,SAAS,EAAE,GAAG,IAAW,CAAC;IAClC,OAAO,IAAA,2BAAmB,EAAC,MAAM,IAAA,uBAAW,EAAC,SAAS,EAAE,MAAM,MAAM,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC;AAC5F,CAAC,CAAC;AAHW,QAAA,OAAO,WAGlB;AAEF,kBAAe,EAAE,QAAQ,EAAR,gBAAQ,EAAE,IAAI,EAAJ,YAAI,EAAE,OAAO,EAAP,eAAO,EAAE,CAAC"}
|
|
@@ -11,7 +11,7 @@ export const metadata = {
|
|
|
11
11
|
};
|
|
12
12
|
export const tool = {
|
|
13
13
|
name: 'list_compute_vms',
|
|
14
|
-
description: "When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nList all VMs\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/vm_list',\n $defs: {\n vm_list: {\n type: 'object',\n properties: {\n items: {\n type: 'array',\n items: {\n $ref: '#/$defs/vm'\n }\n }\n },\n required: [ 'items'\n ]\n },\n vm: {\n type: 'object',\n description: 'VM details.',\n properties: {\n id: {\n type: 'string',\n description: 'Unique identifier for the VM.'\n },\n boot_volume_id: {\n type: 'string',\n description: 'ID of the boot volume attached to the VM.'\n },\n cpu_config: {\n $ref: '#/$defs/cpu_config'\n },\n created_at: {\n type: 'string',\n description: 'When the VM was created.',\n format: 'date-time'\n },\n data_volume_ids: {\n type: 'array',\n description: 'IDs of the data volumes attached to the VM.',\n items: {\n type: 'string'\n }\n },\n memory_config: {\n $ref: '#/$defs/memory_config'\n },\n name: {\n type: 'string',\n description: 'Name of the VM.'\n },\n private_ip: {\n type: 'string',\n description: 'Private IP of the VM.'\n },\n public_ip: {\n type: 'string',\n description: 'Public IP of the VM.'\n },\n public_ip_enabled: {\n type: 'boolean',\n description: 'Whether the public IP is enabled for the VM.'\n },\n region: {\n $ref: '#/$defs/region_name'\n },\n status: {\n $ref: '#/$defs/resource_status'\n },\n subnet_id: {\n type: 'string',\n description: 'ID of the subnet the VM is in.'\n },\n updated_at: {\n type: 'string',\n description: 'When the VM was updated.',\n format: 'date-time'\n },\n vpc_id: {\n type: 'string',\n description: 'ID of the VPC the VM is in.'\n },\n vpc_name: {\n type: 'string',\n description: 'Name of the VPC the VM is in.'\n }\n },\n required: [ 'id',\n 'boot_volume_id',\n 'cpu_config',\n 'created_at',\n 'data_volume_ids',\n 'memory_config',\n 'name',\n 'private_ip',\n 'public_ip',\n 'public_ip_enabled',\n 'region',\n 'status',\n 'subnet_id',\n 'updated_at',\n 'vpc_id',\n 'vpc_name'\n ]\n },\n cpu_config: {\n type: 'object',\n description: 'CPU configuration for the VM.',\n properties: {\n vcpu: {\n type: 'integer',\n description: 'Number of virtual CPUs.'\n }\n },\n required: [ 'vcpu'\n ]\n },\n memory_config: {\n type: 'object',\n description: 'Memory configuration for the VM.',\n properties: {\n size: {\n type: 'integer',\n description: 'Size of the memory in GB.'\n }\n },\n required: [ 'size'\n ]\n },\n region_name: {\n type: 'string',\n description: 'Region the resource is in.',\n enum: [ 'us-sea-1',\n 'us-sva-1',\n 'us-chi-1',\n 'us-wdc-1',\n 'eu-frk-1',\n 'ap-sin-1',\n 'ap-seo-1',\n 'ap-tyo-1'\n ]\n },\n resource_status: {\n type: 'string',\n description: 'Status of the resource.',\n enum: [ 'pending',\n 'creating',\n 'updating',\n 'ready',\n 'deleting',\n 'deleted',\n 'error'\n ]\n }\n }\n}\n```",
|
|
14
|
+
description: "When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nList all VMs\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/vm_list',\n $defs: {\n vm_list: {\n type: 'object',\n properties: {\n items: {\n type: 'array',\n items: {\n $ref: '#/$defs/vm'\n }\n }\n },\n required: [ 'items'\n ]\n },\n vm: {\n type: 'object',\n description: 'VM details.',\n properties: {\n id: {\n type: 'string',\n description: 'Unique identifier for the VM.'\n },\n boot_volume_id: {\n type: 'string',\n description: 'ID of the boot volume attached to the VM.'\n },\n cpu_config: {\n $ref: '#/$defs/cpu_config'\n },\n created_at: {\n type: 'string',\n description: 'When the VM was created.',\n format: 'date-time'\n },\n data_volume_ids: {\n type: 'array',\n description: 'IDs of the data volumes attached to the VM.',\n items: {\n type: 'string'\n }\n },\n memory_config: {\n $ref: '#/$defs/memory_config'\n },\n name: {\n type: 'string',\n description: 'Name of the VM.'\n },\n private_ip: {\n type: 'string',\n description: 'Private IP of the VM.'\n },\n public_ip: {\n type: 'string',\n description: 'Public IP of the VM.'\n },\n public_ip_enabled: {\n type: 'boolean',\n description: 'Whether the public IP is enabled for the VM.'\n },\n region: {\n $ref: '#/$defs/region_name'\n },\n status: {\n $ref: '#/$defs/resource_status'\n },\n subnet_id: {\n type: 'string',\n description: 'ID of the subnet the VM is in.'\n },\n tags: {\n type: 'array',\n description: 'Tags to attach to the VM.',\n items: {\n type: 'string'\n }\n },\n updated_at: {\n type: 'string',\n description: 'When the VM was updated.',\n format: 'date-time'\n },\n vpc_id: {\n type: 'string',\n description: 'ID of the VPC the VM is in.'\n },\n vpc_name: {\n type: 'string',\n description: 'Name of the VPC the VM is in.'\n }\n },\n required: [ 'id',\n 'boot_volume_id',\n 'cpu_config',\n 'created_at',\n 'data_volume_ids',\n 'memory_config',\n 'name',\n 'private_ip',\n 'public_ip',\n 'public_ip_enabled',\n 'region',\n 'status',\n 'subnet_id',\n 'tags',\n 'updated_at',\n 'vpc_id',\n 'vpc_name'\n ]\n },\n cpu_config: {\n type: 'object',\n description: 'CPU configuration for the VM.',\n properties: {\n vcpu: {\n type: 'integer',\n description: 'Number of virtual CPUs.'\n }\n },\n required: [ 'vcpu'\n ]\n },\n memory_config: {\n type: 'object',\n description: 'Memory configuration for the VM.',\n properties: {\n size: {\n type: 'integer',\n description: 'Size of the memory in GB.'\n }\n },\n required: [ 'size'\n ]\n },\n region_name: {\n type: 'string',\n description: 'Region the resource is in.',\n enum: [ 'us-sea-1',\n 'us-sva-1',\n 'us-chi-1',\n 'us-wdc-1',\n 'eu-frk-1',\n 'ap-sin-1',\n 'ap-seo-1',\n 'ap-tyo-1'\n ]\n },\n resource_status: {\n type: 'string',\n description: 'Status of the resource.',\n enum: [ 'pending',\n 'creating',\n 'updating',\n 'ready',\n 'deleting',\n 'deleted',\n 'error'\n ]\n }\n }\n}\n```",
|
|
15
15
|
inputSchema: {
|
|
16
16
|
type: 'object',
|
|
17
17
|
properties: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-compute-vms.mjs","sourceRoot":"","sources":["../../../src/tools/compute/vms/list-compute-vms.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAE,WAAW,EAAE,MAAM,qCAAqC;OAC1D,EAAY,mBAAmB,EAAE,MAAM,uCAAuC;AAKrF,MAAM,CAAC,MAAM,QAAQ,GAAa;IAChC,QAAQ,EAAE,aAAa;IACvB,SAAS,EAAE,MAAM;IACjB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,KAAK;IACjB,QAAQ,EAAE,iBAAiB;IAC3B,WAAW,EAAE,UAAU;CACxB,CAAC;AAEF,MAAM,CAAC,MAAM,IAAI,GAAS;IACxB,IAAI,EAAE,kBAAkB;IACxB,WAAW,EACT,
|
|
1
|
+
{"version":3,"file":"list-compute-vms.mjs","sourceRoot":"","sources":["../../../src/tools/compute/vms/list-compute-vms.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAE,WAAW,EAAE,MAAM,qCAAqC;OAC1D,EAAY,mBAAmB,EAAE,MAAM,uCAAuC;AAKrF,MAAM,CAAC,MAAM,QAAQ,GAAa;IAChC,QAAQ,EAAE,aAAa;IACvB,SAAS,EAAE,MAAM;IACjB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,KAAK;IACjB,QAAQ,EAAE,iBAAiB;IAC3B,WAAW,EAAE,UAAU;CACxB,CAAC;AAEF,MAAM,CAAC,MAAM,IAAI,GAAS;IACxB,IAAI,EAAE,kBAAkB;IACxB,WAAW,EACT,0iIAA0iI;IAC5iI,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,SAAS,EAAE;gBACT,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,WAAW;gBAClB,WAAW,EACT,kWAAkW;aACrW;SACF;QACD,QAAQ,EAAE,EAAE;KACb;IACD,WAAW,EAAE;QACX,YAAY,EAAE,IAAI;KACnB;CACF,CAAC;AAEF,MAAM,CAAC,MAAM,OAAO,GAAG,KAAK,EAAE,MAAmB,EAAE,IAAyC,EAAE,EAAE;IAC9F,MAAM,EAAE,SAAS,EAAE,GAAG,IAAW,CAAC;IAClC,OAAO,mBAAmB,CAAC,MAAM,WAAW,CAAC,SAAS,EAAE,MAAM,MAAM,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC;AAC5F,CAAC,CAAC;AAEF,eAAe,EAAE,QAAQ,EAAE,IAAI,EAAE,OAAO,EAAE,CAAC"}
|
|
@@ -14,7 +14,7 @@ exports.metadata = {
|
|
|
14
14
|
};
|
|
15
15
|
exports.tool = {
|
|
16
16
|
name: 'list_vms_compute_os_images',
|
|
17
|
-
description: "When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nList all OS Images\n\n# Response Schema\n```json\n{\n type: 'array',\n
|
|
17
|
+
description: "When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nList all OS Images\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/os_image_list_response',\n $defs: {\n os_image_list_response: {\n type: 'array',\n items: {\n $ref: '#/$defs/os_image'\n }\n },\n os_image: {\n type: 'object',\n description: 'OS Image details.',\n properties: {\n created_at: {\n type: 'string',\n description: 'When the OS Image was created.',\n format: 'date-time'\n },\n display_name: {\n type: 'string',\n description: 'Display name of the OS Image.'\n },\n name: {\n type: 'string',\n description: 'Name of the OS Image.'\n }\n },\n required: [ 'created_at',\n 'display_name',\n 'name'\n ]\n }\n }\n}\n```",
|
|
18
18
|
inputSchema: {
|
|
19
19
|
type: 'object',
|
|
20
20
|
properties: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-vms-compute-os-images.js","sourceRoot":"","sources":["../../../../src/tools/compute/vms/os-images/list-vms-compute-os-images.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,mEAAkE;AAClE,iEAAsF;AAKzE,QAAA,QAAQ,GAAa;IAChC,QAAQ,EAAE,uBAAuB;IACjC,SAAS,EAAE,MAAM;IACjB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,KAAK;IACjB,QAAQ,EAAE,2BAA2B;IACrC,WAAW,EAAE,gBAAgB;CAC9B,CAAC;AAEW,QAAA,IAAI,GAAS;IACxB,IAAI,EAAE,4BAA4B;IAClC,WAAW,EACT
|
|
1
|
+
{"version":3,"file":"list-vms-compute-os-images.js","sourceRoot":"","sources":["../../../../src/tools/compute/vms/os-images/list-vms-compute-os-images.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,mEAAkE;AAClE,iEAAsF;AAKzE,QAAA,QAAQ,GAAa;IAChC,QAAQ,EAAE,uBAAuB;IACjC,SAAS,EAAE,MAAM;IACjB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,KAAK;IACjB,QAAQ,EAAE,2BAA2B;IACrC,WAAW,EAAE,gBAAgB;CAC9B,CAAC;AAEW,QAAA,IAAI,GAAS;IACxB,IAAI,EAAE,4BAA4B;IAClC,WAAW,EACT,g+BAAg+B;IACl+B,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,SAAS,EAAE;gBACT,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,WAAW;gBAClB,WAAW,EACT,kWAAkW;aACrW;SACF;QACD,QAAQ,EAAE,EAAE;KACb;IACD,WAAW,EAAE;QACX,YAAY,EAAE,IAAI;KACnB;CACF,CAAC;AAEK,MAAM,OAAO,GAAG,KAAK,EAAE,MAAmB,EAAE,IAAyC,EAAE,EAAE;IAC9F,MAAM,EAAE,SAAS,EAAE,GAAG,IAAW,CAAC;IAClC,OAAO,IAAA,2BAAmB,EAAC,MAAM,IAAA,uBAAW,EAAC,SAAS,EAAE,MAAM,MAAM,CAAC,OAAO,CAAC,GAAG,CAAC,QAAQ,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC;AACrG,CAAC,CAAC;AAHW,QAAA,OAAO,WAGlB;AAEF,kBAAe,EAAE,QAAQ,EAAR,gBAAQ,EAAE,IAAI,EAAJ,YAAI,EAAE,OAAO,EAAP,eAAO,EAAE,CAAC"}
|
|
@@ -11,7 +11,7 @@ export const metadata = {
|
|
|
11
11
|
};
|
|
12
12
|
export const tool = {
|
|
13
13
|
name: 'list_vms_compute_os_images',
|
|
14
|
-
description: "When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nList all OS Images\n\n# Response Schema\n```json\n{\n type: 'array',\n
|
|
14
|
+
description: "When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nList all OS Images\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/os_image_list_response',\n $defs: {\n os_image_list_response: {\n type: 'array',\n items: {\n $ref: '#/$defs/os_image'\n }\n },\n os_image: {\n type: 'object',\n description: 'OS Image details.',\n properties: {\n created_at: {\n type: 'string',\n description: 'When the OS Image was created.',\n format: 'date-time'\n },\n display_name: {\n type: 'string',\n description: 'Display name of the OS Image.'\n },\n name: {\n type: 'string',\n description: 'Name of the OS Image.'\n }\n },\n required: [ 'created_at',\n 'display_name',\n 'name'\n ]\n }\n }\n}\n```",
|
|
15
15
|
inputSchema: {
|
|
16
16
|
type: 'object',
|
|
17
17
|
properties: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-vms-compute-os-images.mjs","sourceRoot":"","sources":["../../../../src/tools/compute/vms/os-images/list-vms-compute-os-images.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAE,WAAW,EAAE,MAAM,qCAAqC;OAC1D,EAAY,mBAAmB,EAAE,MAAM,uCAAuC;AAKrF,MAAM,CAAC,MAAM,QAAQ,GAAa;IAChC,QAAQ,EAAE,uBAAuB;IACjC,SAAS,EAAE,MAAM;IACjB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,KAAK;IACjB,QAAQ,EAAE,2BAA2B;IACrC,WAAW,EAAE,gBAAgB;CAC9B,CAAC;AAEF,MAAM,CAAC,MAAM,IAAI,GAAS;IACxB,IAAI,EAAE,4BAA4B;IAClC,WAAW,EACT
|
|
1
|
+
{"version":3,"file":"list-vms-compute-os-images.mjs","sourceRoot":"","sources":["../../../../src/tools/compute/vms/os-images/list-vms-compute-os-images.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAE,WAAW,EAAE,MAAM,qCAAqC;OAC1D,EAAY,mBAAmB,EAAE,MAAM,uCAAuC;AAKrF,MAAM,CAAC,MAAM,QAAQ,GAAa;IAChC,QAAQ,EAAE,uBAAuB;IACjC,SAAS,EAAE,MAAM;IACjB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,KAAK;IACjB,QAAQ,EAAE,2BAA2B;IACrC,WAAW,EAAE,gBAAgB;CAC9B,CAAC;AAEF,MAAM,CAAC,MAAM,IAAI,GAAS;IACxB,IAAI,EAAE,4BAA4B;IAClC,WAAW,EACT,g+BAAg+B;IACl+B,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,SAAS,EAAE;gBACT,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,WAAW;gBAClB,WAAW,EACT,kWAAkW;aACrW;SACF;QACD,QAAQ,EAAE,EAAE;KACb;IACD,WAAW,EAAE;QACX,YAAY,EAAE,IAAI;KACnB;CACF,CAAC;AAEF,MAAM,CAAC,MAAM,OAAO,GAAG,KAAK,EAAE,MAAmB,EAAE,IAAyC,EAAE,EAAE;IAC9F,MAAM,EAAE,SAAS,EAAE,GAAG,IAAW,CAAC;IAClC,OAAO,mBAAmB,CAAC,MAAM,WAAW,CAAC,SAAS,EAAE,MAAM,MAAM,CAAC,OAAO,CAAC,GAAG,CAAC,QAAQ,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC;AACrG,CAAC,CAAC;AAEF,eAAe,EAAE,QAAQ,EAAE,IAAI,EAAE,OAAO,EAAE,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"update-compute-vms.d.mts","sourceRoot":"","sources":["../../../src/tools/compute/vms/update-compute-vms.ts"],"names":[],"mappings":"OAGO,EAAE,QAAQ,EAAuB,MAAM,uCAAuC;OAE9E,EAAE,IAAI,EAAE,MAAM,oCAAoC;OAClD,WAAW,MAAM,uBAAuB;AAE/C,eAAO,MAAM,QAAQ,EAAE,QAOtB,CAAC;AAEF,eAAO,MAAM,IAAI,EAAE,
|
|
1
|
+
{"version":3,"file":"update-compute-vms.d.mts","sourceRoot":"","sources":["../../../src/tools/compute/vms/update-compute-vms.ts"],"names":[],"mappings":"OAGO,EAAE,QAAQ,EAAuB,MAAM,uCAAuC;OAE9E,EAAE,IAAI,EAAE,MAAM,oCAAoC;OAClD,WAAW,MAAM,uBAAuB;AAE/C,eAAO,MAAM,QAAQ,EAAE,QAOtB,CAAC;AAEF,eAAO,MAAM,IAAI,EAAE,IAiElB,CAAC;AAEF,eAAO,MAAM,OAAO,GAAU,QAAQ,WAAW,EAAE,MAAM,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS,4EAG3F,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;sBAHoC,WAAW,QAAQ,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS;;AAK5F,wBAA2C"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"update-compute-vms.d.ts","sourceRoot":"","sources":["../../../src/tools/compute/vms/update-compute-vms.ts"],"names":[],"mappings":"OAGO,EAAE,QAAQ,EAAuB,MAAM,uCAAuC;OAE9E,EAAE,IAAI,EAAE,MAAM,oCAAoC;OAClD,WAAW,MAAM,uBAAuB;AAE/C,eAAO,MAAM,QAAQ,EAAE,QAOtB,CAAC;AAEF,eAAO,MAAM,IAAI,EAAE,
|
|
1
|
+
{"version":3,"file":"update-compute-vms.d.ts","sourceRoot":"","sources":["../../../src/tools/compute/vms/update-compute-vms.ts"],"names":[],"mappings":"OAGO,EAAE,QAAQ,EAAuB,MAAM,uCAAuC;OAE9E,EAAE,IAAI,EAAE,MAAM,oCAAoC;OAClD,WAAW,MAAM,uBAAuB;AAE/C,eAAO,MAAM,QAAQ,EAAE,QAOtB,CAAC;AAEF,eAAO,MAAM,IAAI,EAAE,IAiElB,CAAC;AAEF,eAAO,MAAM,OAAO,GAAU,QAAQ,WAAW,EAAE,MAAM,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS,4EAG3F,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;sBAHoC,WAAW,QAAQ,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS;;AAK5F,wBAA2C"}
|
|
@@ -35,6 +35,13 @@ exports.tool = {
|
|
|
35
35
|
type: 'boolean',
|
|
36
36
|
description: 'Whether to enable public IP for the VM.',
|
|
37
37
|
},
|
|
38
|
+
tags: {
|
|
39
|
+
type: 'array',
|
|
40
|
+
description: 'Tags to attach to the VM.',
|
|
41
|
+
items: {
|
|
42
|
+
type: 'string',
|
|
43
|
+
},
|
|
44
|
+
},
|
|
38
45
|
jq_filter: {
|
|
39
46
|
type: 'string',
|
|
40
47
|
title: 'jq Filter',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"update-compute-vms.js","sourceRoot":"","sources":["../../../src/tools/compute/vms/update-compute-vms.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,mEAAkE;AAClE,iEAAsF;AAKzE,QAAA,QAAQ,GAAa;IAChC,QAAQ,EAAE,aAAa;IACvB,SAAS,EAAE,OAAO;IAClB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,OAAO;IACnB,QAAQ,EAAE,yBAAyB;IACnC,WAAW,EAAE,WAAW;CACzB,CAAC;AAEW,QAAA,IAAI,GAAS;IACxB,IAAI,EAAE,oBAAoB;IAC1B,WAAW,EACT,m5DAAm5D;IACr5D,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,KAAK,EAAE;gBACL,IAAI,EAAE,QAAQ;aACf;YACD,UAAU,EAAE;gBACV,IAAI,EAAE,4BAA4B;aACnC;YACD,aAAa,EAAE;gBACb,IAAI,EAAE,+BAA+B;aACtC;YACD,IAAI,EAAE;gBACJ,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,iBAAiB;aAC/B;YACD,iBAAiB,EAAE;gBACjB,IAAI,EAAE,SAAS;gBACf,WAAW,EAAE,yCAAyC;aACvD;YACD,SAAS,EAAE;gBACT,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,WAAW;gBAClB,WAAW,EACT,kWAAkW;aACrW;SACF;QACD,QAAQ,EAAE,CAAC,OAAO,CAAC;QACnB,KAAK,EAAE;YACL,kBAAkB,EAAE;gBAClB,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,+BAA+B;gBAC5C,UAAU,EAAE;oBACV,IAAI,EAAE;wBACJ,IAAI,EAAE,SAAS;wBACf,WAAW,EAAE,yBAAyB;qBACvC;iBACF;gBACD,QAAQ,EAAE,CAAC,MAAM,CAAC;aACnB;YACD,qBAAqB,EAAE;gBACrB,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,kCAAkC;gBAC/C,UAAU,EAAE;oBACV,IAAI,EAAE;wBACJ,IAAI,EAAE,SAAS;wBACf,WAAW,EAAE,2BAA2B;qBACzC;iBACF;gBACD,QAAQ,EAAE,CAAC,MAAM,CAAC;aACnB;SACF;KACF;IACD,WAAW,EAAE,EAAE;CAChB,CAAC;AAEK,MAAM,OAAO,GAAG,KAAK,EAAE,MAAmB,EAAE,IAAyC,EAAE,EAAE;IAC9F,MAAM,EAAE,KAAK,EAAE,SAAS,EAAE,GAAG,IAAI,EAAE,GAAG,IAAW,CAAC;IAClD,OAAO,IAAA,2BAAmB,EAAC,MAAM,IAAA,uBAAW,EAAC,SAAS,EAAE,MAAM,MAAM,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,KAAK,EAAE,IAAI,CAAC,CAAC,CAAC,CAAC;AACzG,CAAC,CAAC;AAHW,QAAA,OAAO,WAGlB;AAEF,kBAAe,EAAE,QAAQ,EAAR,gBAAQ,EAAE,IAAI,EAAJ,YAAI,EAAE,OAAO,EAAP,eAAO,EAAE,CAAC"}
|
|
1
|
+
{"version":3,"file":"update-compute-vms.js","sourceRoot":"","sources":["../../../src/tools/compute/vms/update-compute-vms.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,mEAAkE;AAClE,iEAAsF;AAKzE,QAAA,QAAQ,GAAa;IAChC,QAAQ,EAAE,aAAa;IACvB,SAAS,EAAE,OAAO;IAClB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,OAAO;IACnB,QAAQ,EAAE,yBAAyB;IACnC,WAAW,EAAE,WAAW;CACzB,CAAC;AAEW,QAAA,IAAI,GAAS;IACxB,IAAI,EAAE,oBAAoB;IAC1B,WAAW,EACT,m5DAAm5D;IACr5D,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,KAAK,EAAE;gBACL,IAAI,EAAE,QAAQ;aACf;YACD,UAAU,EAAE;gBACV,IAAI,EAAE,4BAA4B;aACnC;YACD,aAAa,EAAE;gBACb,IAAI,EAAE,+BAA+B;aACtC;YACD,IAAI,EAAE;gBACJ,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,iBAAiB;aAC/B;YACD,iBAAiB,EAAE;gBACjB,IAAI,EAAE,SAAS;gBACf,WAAW,EAAE,yCAAyC;aACvD;YACD,IAAI,EAAE;gBACJ,IAAI,EAAE,OAAO;gBACb,WAAW,EAAE,2BAA2B;gBACxC,KAAK,EAAE;oBACL,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,SAAS,EAAE;gBACT,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,WAAW;gBAClB,WAAW,EACT,kWAAkW;aACrW;SACF;QACD,QAAQ,EAAE,CAAC,OAAO,CAAC;QACnB,KAAK,EAAE;YACL,kBAAkB,EAAE;gBAClB,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,+BAA+B;gBAC5C,UAAU,EAAE;oBACV,IAAI,EAAE;wBACJ,IAAI,EAAE,SAAS;wBACf,WAAW,EAAE,yBAAyB;qBACvC;iBACF;gBACD,QAAQ,EAAE,CAAC,MAAM,CAAC;aACnB;YACD,qBAAqB,EAAE;gBACrB,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,kCAAkC;gBAC/C,UAAU,EAAE;oBACV,IAAI,EAAE;wBACJ,IAAI,EAAE,SAAS;wBACf,WAAW,EAAE,2BAA2B;qBACzC;iBACF;gBACD,QAAQ,EAAE,CAAC,MAAM,CAAC;aACnB;SACF;KACF;IACD,WAAW,EAAE,EAAE;CAChB,CAAC;AAEK,MAAM,OAAO,GAAG,KAAK,EAAE,MAAmB,EAAE,IAAyC,EAAE,EAAE;IAC9F,MAAM,EAAE,KAAK,EAAE,SAAS,EAAE,GAAG,IAAI,EAAE,GAAG,IAAW,CAAC;IAClD,OAAO,IAAA,2BAAmB,EAAC,MAAM,IAAA,uBAAW,EAAC,SAAS,EAAE,MAAM,MAAM,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,KAAK,EAAE,IAAI,CAAC,CAAC,CAAC,CAAC;AACzG,CAAC,CAAC;AAHW,QAAA,OAAO,WAGlB;AAEF,kBAAe,EAAE,QAAQ,EAAR,gBAAQ,EAAE,IAAI,EAAJ,YAAI,EAAE,OAAO,EAAP,eAAO,EAAE,CAAC"}
|
|
@@ -32,6 +32,13 @@ export const tool = {
|
|
|
32
32
|
type: 'boolean',
|
|
33
33
|
description: 'Whether to enable public IP for the VM.',
|
|
34
34
|
},
|
|
35
|
+
tags: {
|
|
36
|
+
type: 'array',
|
|
37
|
+
description: 'Tags to attach to the VM.',
|
|
38
|
+
items: {
|
|
39
|
+
type: 'string',
|
|
40
|
+
},
|
|
41
|
+
},
|
|
35
42
|
jq_filter: {
|
|
36
43
|
type: 'string',
|
|
37
44
|
title: 'jq Filter',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"update-compute-vms.mjs","sourceRoot":"","sources":["../../../src/tools/compute/vms/update-compute-vms.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAE,WAAW,EAAE,MAAM,qCAAqC;OAC1D,EAAY,mBAAmB,EAAE,MAAM,uCAAuC;AAKrF,MAAM,CAAC,MAAM,QAAQ,GAAa;IAChC,QAAQ,EAAE,aAAa;IACvB,SAAS,EAAE,OAAO;IAClB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,OAAO;IACnB,QAAQ,EAAE,yBAAyB;IACnC,WAAW,EAAE,WAAW;CACzB,CAAC;AAEF,MAAM,CAAC,MAAM,IAAI,GAAS;IACxB,IAAI,EAAE,oBAAoB;IAC1B,WAAW,EACT,m5DAAm5D;IACr5D,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,KAAK,EAAE;gBACL,IAAI,EAAE,QAAQ;aACf;YACD,UAAU,EAAE;gBACV,IAAI,EAAE,4BAA4B;aACnC;YACD,aAAa,EAAE;gBACb,IAAI,EAAE,+BAA+B;aACtC;YACD,IAAI,EAAE;gBACJ,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,iBAAiB;aAC/B;YACD,iBAAiB,EAAE;gBACjB,IAAI,EAAE,SAAS;gBACf,WAAW,EAAE,yCAAyC;aACvD;YACD,SAAS,EAAE;gBACT,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,WAAW;gBAClB,WAAW,EACT,kWAAkW;aACrW;SACF;QACD,QAAQ,EAAE,CAAC,OAAO,CAAC;QACnB,KAAK,EAAE;YACL,kBAAkB,EAAE;gBAClB,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,+BAA+B;gBAC5C,UAAU,EAAE;oBACV,IAAI,EAAE;wBACJ,IAAI,EAAE,SAAS;wBACf,WAAW,EAAE,yBAAyB;qBACvC;iBACF;gBACD,QAAQ,EAAE,CAAC,MAAM,CAAC;aACnB;YACD,qBAAqB,EAAE;gBACrB,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,kCAAkC;gBAC/C,UAAU,EAAE;oBACV,IAAI,EAAE;wBACJ,IAAI,EAAE,SAAS;wBACf,WAAW,EAAE,2BAA2B;qBACzC;iBACF;gBACD,QAAQ,EAAE,CAAC,MAAM,CAAC;aACnB;SACF;KACF;IACD,WAAW,EAAE,EAAE;CAChB,CAAC;AAEF,MAAM,CAAC,MAAM,OAAO,GAAG,KAAK,EAAE,MAAmB,EAAE,IAAyC,EAAE,EAAE;IAC9F,MAAM,EAAE,KAAK,EAAE,SAAS,EAAE,GAAG,IAAI,EAAE,GAAG,IAAW,CAAC;IAClD,OAAO,mBAAmB,CAAC,MAAM,WAAW,CAAC,SAAS,EAAE,MAAM,MAAM,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,KAAK,EAAE,IAAI,CAAC,CAAC,CAAC,CAAC;AACzG,CAAC,CAAC;AAEF,eAAe,EAAE,QAAQ,EAAE,IAAI,EAAE,OAAO,EAAE,CAAC"}
|
|
1
|
+
{"version":3,"file":"update-compute-vms.mjs","sourceRoot":"","sources":["../../../src/tools/compute/vms/update-compute-vms.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAE,WAAW,EAAE,MAAM,qCAAqC;OAC1D,EAAY,mBAAmB,EAAE,MAAM,uCAAuC;AAKrF,MAAM,CAAC,MAAM,QAAQ,GAAa;IAChC,QAAQ,EAAE,aAAa;IACvB,SAAS,EAAE,OAAO;IAClB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,OAAO;IACnB,QAAQ,EAAE,yBAAyB;IACnC,WAAW,EAAE,WAAW;CACzB,CAAC;AAEF,MAAM,CAAC,MAAM,IAAI,GAAS;IACxB,IAAI,EAAE,oBAAoB;IAC1B,WAAW,EACT,m5DAAm5D;IACr5D,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,KAAK,EAAE;gBACL,IAAI,EAAE,QAAQ;aACf;YACD,UAAU,EAAE;gBACV,IAAI,EAAE,4BAA4B;aACnC;YACD,aAAa,EAAE;gBACb,IAAI,EAAE,+BAA+B;aACtC;YACD,IAAI,EAAE;gBACJ,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,iBAAiB;aAC/B;YACD,iBAAiB,EAAE;gBACjB,IAAI,EAAE,SAAS;gBACf,WAAW,EAAE,yCAAyC;aACvD;YACD,IAAI,EAAE;gBACJ,IAAI,EAAE,OAAO;gBACb,WAAW,EAAE,2BAA2B;gBACxC,KAAK,EAAE;oBACL,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,SAAS,EAAE;gBACT,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,WAAW;gBAClB,WAAW,EACT,kWAAkW;aACrW;SACF;QACD,QAAQ,EAAE,CAAC,OAAO,CAAC;QACnB,KAAK,EAAE;YACL,kBAAkB,EAAE;gBAClB,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,+BAA+B;gBAC5C,UAAU,EAAE;oBACV,IAAI,EAAE;wBACJ,IAAI,EAAE,SAAS;wBACf,WAAW,EAAE,yBAAyB;qBACvC;iBACF;gBACD,QAAQ,EAAE,CAAC,MAAM,CAAC;aACnB;YACD,qBAAqB,EAAE;gBACrB,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,kCAAkC;gBAC/C,UAAU,EAAE;oBACV,IAAI,EAAE;wBACJ,IAAI,EAAE,SAAS;wBACf,WAAW,EAAE,2BAA2B;qBACzC;iBACF;gBACD,QAAQ,EAAE,CAAC,MAAM,CAAC;aACnB;SACF;KACF;IACD,WAAW,EAAE,EAAE;CAChB,CAAC;AAEF,MAAM,CAAC,MAAM,OAAO,GAAG,KAAK,EAAE,MAAmB,EAAE,IAAyC,EAAE,EAAE;IAC9F,MAAM,EAAE,KAAK,EAAE,SAAS,EAAE,GAAG,IAAI,EAAE,GAAG,IAAW,CAAC;IAClD,OAAO,mBAAmB,CAAC,MAAM,WAAW,CAAC,SAAS,EAAE,MAAM,MAAM,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,KAAK,EAAE,IAAI,CAAC,CAAC,CAAC,CAAC;AACzG,CAAC,CAAC;AAEF,eAAe,EAAE,QAAQ,EAAE,IAAI,EAAE,OAAO,EAAE,CAAC"}
|
|
@@ -14,7 +14,7 @@ exports.metadata = {
|
|
|
14
14
|
};
|
|
15
15
|
exports.tool = {
|
|
16
16
|
name: 'list_vms_compute_volumes',
|
|
17
|
-
description: "When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nList VM's Volumes\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/volume_list',\n $defs: {\n volume_list: {\n type: 'object',\n properties: {\n items: {\n type: 'array',\n items: {\n $ref: '#/$defs/volume'\n }\n }\n },\n required: [ 'items'\n ]\n },\n volume: {\n type: 'object',\n description: 'Volume details.',\n properties: {\n id: {\n type: 'string',\n description: 'Unique identifier for the Volume.'\n },\n created_at: {\n type: 'string',\n description: 'When the Volume was created.',\n format: 'date-time'\n },\n kind: {\n $ref: '#/$defs/volume_kind'\n },\n name: {\n type: 'string',\n description: 'Name of the Volume.'\n },\n size: {\n type: 'integer',\n description: 'Size of the Volume in GB.'\n },\n status: {\n $ref: '#/$defs/resource_status'\n },\n type: {\n $ref: '#/$defs/storage_type'\n },\n updated_at: {\n type: 'string',\n description: 'When the Volume was updated.',\n format: 'date-time'\n },\n vm_id: {\n type: 'string',\n description: 'ID of the VM the Volume is attached to.'\n },\n vm_name: {\n type: 'string',\n description: 'Name of the VM the Volume is attached to.'\n }\n },\n required: [ 'id',\n 'created_at',\n 'kind',\n 'name',\n 'size',\n 'status',\n 'type',\n 'updated_at',\n 'vm_id',\n 'vm_name'\n ]\n },\n volume_kind: {\n type: 'string',\n description: 'Volume kind.',\n enum: [ 'boot',\n 'data'\n ]\n },\n resource_status: {\n type: 'string',\n description: 'Status of the resource.',\n enum: [ 'pending',\n 'creating',\n 'updating',\n 'ready',\n 'deleting',\n 'deleted',\n 'error'\n ]\n },\n storage_type: {\n type: 'string',\n description: 'Storage type the Volume is using.',\n enum: [ 'nvme'\n ]\n }\n }\n}\n```",
|
|
17
|
+
description: "When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nList VM's Volumes\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/volume_list',\n $defs: {\n volume_list: {\n type: 'object',\n properties: {\n items: {\n type: 'array',\n items: {\n $ref: '#/$defs/volume'\n }\n }\n },\n required: [ 'items'\n ]\n },\n volume: {\n type: 'object',\n description: 'Volume details.',\n properties: {\n id: {\n type: 'string',\n description: 'Unique identifier for the Volume.'\n },\n created_at: {\n type: 'string',\n description: 'When the Volume was created.',\n format: 'date-time'\n },\n kind: {\n $ref: '#/$defs/volume_kind'\n },\n name: {\n type: 'string',\n description: 'Name of the Volume.'\n },\n size: {\n type: 'integer',\n description: 'Size of the Volume in GB.'\n },\n status: {\n $ref: '#/$defs/resource_status'\n },\n tags: {\n type: 'array',\n description: 'Tags to attach to the Volume.',\n items: {\n type: 'string'\n }\n },\n type: {\n $ref: '#/$defs/storage_type'\n },\n updated_at: {\n type: 'string',\n description: 'When the Volume was updated.',\n format: 'date-time'\n },\n vm_id: {\n type: 'string',\n description: 'ID of the VM the Volume is attached to.'\n },\n vm_name: {\n type: 'string',\n description: 'Name of the VM the Volume is attached to.'\n }\n },\n required: [ 'id',\n 'created_at',\n 'kind',\n 'name',\n 'size',\n 'status',\n 'tags',\n 'type',\n 'updated_at',\n 'vm_id',\n 'vm_name'\n ]\n },\n volume_kind: {\n type: 'string',\n description: 'Volume kind.',\n enum: [ 'boot',\n 'data'\n ]\n },\n resource_status: {\n type: 'string',\n description: 'Status of the resource.',\n enum: [ 'pending',\n 'creating',\n 'updating',\n 'ready',\n 'deleting',\n 'deleted',\n 'error'\n ]\n },\n storage_type: {\n type: 'string',\n description: 'Storage type the Volume is using.',\n enum: [ 'nvme'\n ]\n }\n }\n}\n```",
|
|
18
18
|
inputSchema: {
|
|
19
19
|
type: 'object',
|
|
20
20
|
properties: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-vms-compute-volumes.js","sourceRoot":"","sources":["../../../../src/tools/compute/vms/volumes/list-vms-compute-volumes.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,mEAAkE;AAClE,iEAAsF;AAKzE,QAAA,QAAQ,GAAa;IAChC,QAAQ,EAAE,qBAAqB;IAC/B,SAAS,EAAE,MAAM;IACjB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,KAAK;IACjB,QAAQ,EAAE,iCAAiC;IAC3C,WAAW,EAAE,iBAAiB;CAC/B,CAAC;AAEW,QAAA,IAAI,GAAS;IACxB,IAAI,EAAE,0BAA0B;IAChC,WAAW,EACT,
|
|
1
|
+
{"version":3,"file":"list-vms-compute-volumes.js","sourceRoot":"","sources":["../../../../src/tools/compute/vms/volumes/list-vms-compute-volumes.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,mEAAkE;AAClE,iEAAsF;AAKzE,QAAA,QAAQ,GAAa;IAChC,QAAQ,EAAE,qBAAqB;IAC/B,SAAS,EAAE,MAAM;IACjB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,KAAK;IACjB,QAAQ,EAAE,iCAAiC;IAC3C,WAAW,EAAE,iBAAiB;CAC/B,CAAC;AAEW,QAAA,IAAI,GAAS;IACxB,IAAI,EAAE,0BAA0B;IAChC,WAAW,EACT,onFAAonF;IACtnF,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,KAAK,EAAE;gBACL,IAAI,EAAE,QAAQ;aACf;YACD,SAAS,EAAE;gBACT,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,WAAW;gBAClB,WAAW,EACT,kWAAkW;aACrW;SACF;QACD,QAAQ,EAAE,CAAC,OAAO,CAAC;KACpB;IACD,WAAW,EAAE;QACX,YAAY,EAAE,IAAI;KACnB;CACF,CAAC;AAEK,MAAM,OAAO,GAAG,KAAK,EAAE,MAAmB,EAAE,IAAyC,EAAE,EAAE;IAC9F,MAAM,EAAE,KAAK,EAAE,SAAS,EAAE,GAAG,IAAI,EAAE,GAAG,IAAW,CAAC;IAClD,OAAO,IAAA,2BAAmB,EAAC,MAAM,IAAA,uBAAW,EAAC,SAAS,EAAE,MAAM,MAAM,CAAC,OAAO,CAAC,GAAG,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;AACzG,CAAC,CAAC;AAHW,QAAA,OAAO,WAGlB;AAEF,kBAAe,EAAE,QAAQ,EAAR,gBAAQ,EAAE,IAAI,EAAJ,YAAI,EAAE,OAAO,EAAP,eAAO,EAAE,CAAC"}
|
|
@@ -11,7 +11,7 @@ export const metadata = {
|
|
|
11
11
|
};
|
|
12
12
|
export const tool = {
|
|
13
13
|
name: 'list_vms_compute_volumes',
|
|
14
|
-
description: "When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nList VM's Volumes\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/volume_list',\n $defs: {\n volume_list: {\n type: 'object',\n properties: {\n items: {\n type: 'array',\n items: {\n $ref: '#/$defs/volume'\n }\n }\n },\n required: [ 'items'\n ]\n },\n volume: {\n type: 'object',\n description: 'Volume details.',\n properties: {\n id: {\n type: 'string',\n description: 'Unique identifier for the Volume.'\n },\n created_at: {\n type: 'string',\n description: 'When the Volume was created.',\n format: 'date-time'\n },\n kind: {\n $ref: '#/$defs/volume_kind'\n },\n name: {\n type: 'string',\n description: 'Name of the Volume.'\n },\n size: {\n type: 'integer',\n description: 'Size of the Volume in GB.'\n },\n status: {\n $ref: '#/$defs/resource_status'\n },\n type: {\n $ref: '#/$defs/storage_type'\n },\n updated_at: {\n type: 'string',\n description: 'When the Volume was updated.',\n format: 'date-time'\n },\n vm_id: {\n type: 'string',\n description: 'ID of the VM the Volume is attached to.'\n },\n vm_name: {\n type: 'string',\n description: 'Name of the VM the Volume is attached to.'\n }\n },\n required: [ 'id',\n 'created_at',\n 'kind',\n 'name',\n 'size',\n 'status',\n 'type',\n 'updated_at',\n 'vm_id',\n 'vm_name'\n ]\n },\n volume_kind: {\n type: 'string',\n description: 'Volume kind.',\n enum: [ 'boot',\n 'data'\n ]\n },\n resource_status: {\n type: 'string',\n description: 'Status of the resource.',\n enum: [ 'pending',\n 'creating',\n 'updating',\n 'ready',\n 'deleting',\n 'deleted',\n 'error'\n ]\n },\n storage_type: {\n type: 'string',\n description: 'Storage type the Volume is using.',\n enum: [ 'nvme'\n ]\n }\n }\n}\n```",
|
|
14
|
+
description: "When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nList VM's Volumes\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/volume_list',\n $defs: {\n volume_list: {\n type: 'object',\n properties: {\n items: {\n type: 'array',\n items: {\n $ref: '#/$defs/volume'\n }\n }\n },\n required: [ 'items'\n ]\n },\n volume: {\n type: 'object',\n description: 'Volume details.',\n properties: {\n id: {\n type: 'string',\n description: 'Unique identifier for the Volume.'\n },\n created_at: {\n type: 'string',\n description: 'When the Volume was created.',\n format: 'date-time'\n },\n kind: {\n $ref: '#/$defs/volume_kind'\n },\n name: {\n type: 'string',\n description: 'Name of the Volume.'\n },\n size: {\n type: 'integer',\n description: 'Size of the Volume in GB.'\n },\n status: {\n $ref: '#/$defs/resource_status'\n },\n tags: {\n type: 'array',\n description: 'Tags to attach to the Volume.',\n items: {\n type: 'string'\n }\n },\n type: {\n $ref: '#/$defs/storage_type'\n },\n updated_at: {\n type: 'string',\n description: 'When the Volume was updated.',\n format: 'date-time'\n },\n vm_id: {\n type: 'string',\n description: 'ID of the VM the Volume is attached to.'\n },\n vm_name: {\n type: 'string',\n description: 'Name of the VM the Volume is attached to.'\n }\n },\n required: [ 'id',\n 'created_at',\n 'kind',\n 'name',\n 'size',\n 'status',\n 'tags',\n 'type',\n 'updated_at',\n 'vm_id',\n 'vm_name'\n ]\n },\n volume_kind: {\n type: 'string',\n description: 'Volume kind.',\n enum: [ 'boot',\n 'data'\n ]\n },\n resource_status: {\n type: 'string',\n description: 'Status of the resource.',\n enum: [ 'pending',\n 'creating',\n 'updating',\n 'ready',\n 'deleting',\n 'deleted',\n 'error'\n ]\n },\n storage_type: {\n type: 'string',\n description: 'Storage type the Volume is using.',\n enum: [ 'nvme'\n ]\n }\n }\n}\n```",
|
|
15
15
|
inputSchema: {
|
|
16
16
|
type: 'object',
|
|
17
17
|
properties: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-vms-compute-volumes.mjs","sourceRoot":"","sources":["../../../../src/tools/compute/vms/volumes/list-vms-compute-volumes.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAE,WAAW,EAAE,MAAM,qCAAqC;OAC1D,EAAY,mBAAmB,EAAE,MAAM,uCAAuC;AAKrF,MAAM,CAAC,MAAM,QAAQ,GAAa;IAChC,QAAQ,EAAE,qBAAqB;IAC/B,SAAS,EAAE,MAAM;IACjB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,KAAK;IACjB,QAAQ,EAAE,iCAAiC;IAC3C,WAAW,EAAE,iBAAiB;CAC/B,CAAC;AAEF,MAAM,CAAC,MAAM,IAAI,GAAS;IACxB,IAAI,EAAE,0BAA0B;IAChC,WAAW,EACT,
|
|
1
|
+
{"version":3,"file":"list-vms-compute-volumes.mjs","sourceRoot":"","sources":["../../../../src/tools/compute/vms/volumes/list-vms-compute-volumes.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAE,WAAW,EAAE,MAAM,qCAAqC;OAC1D,EAAY,mBAAmB,EAAE,MAAM,uCAAuC;AAKrF,MAAM,CAAC,MAAM,QAAQ,GAAa;IAChC,QAAQ,EAAE,qBAAqB;IAC/B,SAAS,EAAE,MAAM;IACjB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,KAAK;IACjB,QAAQ,EAAE,iCAAiC;IAC3C,WAAW,EAAE,iBAAiB;CAC/B,CAAC;AAEF,MAAM,CAAC,MAAM,IAAI,GAAS;IACxB,IAAI,EAAE,0BAA0B;IAChC,WAAW,EACT,onFAAonF;IACtnF,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,KAAK,EAAE;gBACL,IAAI,EAAE,QAAQ;aACf;YACD,SAAS,EAAE;gBACT,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,WAAW;gBAClB,WAAW,EACT,kWAAkW;aACrW;SACF;QACD,QAAQ,EAAE,CAAC,OAAO,CAAC;KACpB;IACD,WAAW,EAAE;QACX,YAAY,EAAE,IAAI;KACnB;CACF,CAAC;AAEF,MAAM,CAAC,MAAM,OAAO,GAAG,KAAK,EAAE,MAAmB,EAAE,IAAyC,EAAE,EAAE;IAC9F,MAAM,EAAE,KAAK,EAAE,SAAS,EAAE,GAAG,IAAI,EAAE,GAAG,IAAW,CAAC;IAClD,OAAO,mBAAmB,CAAC,MAAM,WAAW,CAAC,SAAS,EAAE,MAAM,MAAM,CAAC,OAAO,CAAC,GAAG,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;AACzG,CAAC,CAAC;AAEF,eAAe,EAAE,QAAQ,EAAE,IAAI,EAAE,OAAO,EAAE,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-volumes-compute-availability.d.mts","sourceRoot":"","sources":["../../../../src/tools/compute/volumes/availability/create-volumes-compute-availability.ts"],"names":[],"mappings":"OAGO,EAAE,QAAQ,EAAuB,MAAM,uCAAuC;OAE9E,EAAE,IAAI,EAAE,MAAM,oCAAoC;OAClD,WAAW,MAAM,uBAAuB;AAE/C,eAAO,MAAM,QAAQ,EAAE,QAOtB,CAAC;AAEF,eAAO,MAAM,IAAI,EAAE,
|
|
1
|
+
{"version":3,"file":"create-volumes-compute-availability.d.mts","sourceRoot":"","sources":["../../../../src/tools/compute/volumes/availability/create-volumes-compute-availability.ts"],"names":[],"mappings":"OAGO,EAAE,QAAQ,EAAuB,MAAM,uCAAuC;OAE9E,EAAE,IAAI,EAAE,MAAM,oCAAoC;OAClD,WAAW,MAAM,uBAAuB;AAE/C,eAAO,MAAM,QAAQ,EAAE,QAOtB,CAAC;AAEF,eAAO,MAAM,IAAI,EAAE,IAoClB,CAAC;AAEF,eAAO,MAAM,OAAO,GAAU,QAAQ,WAAW,EAAE,MAAM,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS,4EAK3F,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;sBALoC,WAAW,QAAQ,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS;;AAO5F,wBAA2C"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-volumes-compute-availability.d.ts","sourceRoot":"","sources":["../../../../src/tools/compute/volumes/availability/create-volumes-compute-availability.ts"],"names":[],"mappings":"OAGO,EAAE,QAAQ,EAAuB,MAAM,uCAAuC;OAE9E,EAAE,IAAI,EAAE,MAAM,oCAAoC;OAClD,WAAW,MAAM,uBAAuB;AAE/C,eAAO,MAAM,QAAQ,EAAE,QAOtB,CAAC;AAEF,eAAO,MAAM,IAAI,EAAE,
|
|
1
|
+
{"version":3,"file":"create-volumes-compute-availability.d.ts","sourceRoot":"","sources":["../../../../src/tools/compute/volumes/availability/create-volumes-compute-availability.ts"],"names":[],"mappings":"OAGO,EAAE,QAAQ,EAAuB,MAAM,uCAAuC;OAE9E,EAAE,IAAI,EAAE,MAAM,oCAAoC;OAClD,WAAW,MAAM,uBAAuB;AAE/C,eAAO,MAAM,QAAQ,EAAE,QAOtB,CAAC;AAEF,eAAO,MAAM,IAAI,EAAE,IAoClB,CAAC;AAEF,eAAO,MAAM,OAAO,GAAU,QAAQ,WAAW,EAAE,MAAM,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS,4EAK3F,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;sBALoC,WAAW,QAAQ,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS;;AAO5F,wBAA2C"}
|
|
@@ -14,7 +14,7 @@ exports.metadata = {
|
|
|
14
14
|
};
|
|
15
15
|
exports.tool = {
|
|
16
16
|
name: 'create_volumes_compute_availability',
|
|
17
|
-
description: "When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nCheck Volume Create Availability\n\n# Response Schema\n```json\n{\n type: 'string'\n}\n```",
|
|
17
|
+
description: "When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nCheck Volume Create Availability\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/availability_create_response',\n $defs: {\n availability_create_response: {\n type: 'string'\n }\n }\n}\n```",
|
|
18
18
|
inputSchema: {
|
|
19
19
|
type: 'object',
|
|
20
20
|
properties: {
|
|
@@ -30,6 +30,13 @@ exports.tool = {
|
|
|
30
30
|
type: 'string',
|
|
31
31
|
description: 'ID of the VM the Volume is attached to.',
|
|
32
32
|
},
|
|
33
|
+
tags: {
|
|
34
|
+
type: 'array',
|
|
35
|
+
description: 'Tags to attach to the Volume.',
|
|
36
|
+
items: {
|
|
37
|
+
type: 'string',
|
|
38
|
+
},
|
|
39
|
+
},
|
|
33
40
|
jq_filter: {
|
|
34
41
|
type: 'string',
|
|
35
42
|
title: 'jq Filter',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-volumes-compute-availability.js","sourceRoot":"","sources":["../../../../src/tools/compute/volumes/availability/create-volumes-compute-availability.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,mEAAkE;AAClE,iEAAsF;AAKzE,QAAA,QAAQ,GAAa;IAChC,QAAQ,EAAE,8BAA8B;IACxC,SAAS,EAAE,OAAO;IAClB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,MAAM;IAClB,QAAQ,EAAE,kCAAkC;IAC5C,WAAW,EAAE,4BAA4B;CAC1C,CAAC;AAEW,QAAA,IAAI,GAAS;IACxB,IAAI,EAAE,qCAAqC;IAC3C,WAAW,EACT,
|
|
1
|
+
{"version":3,"file":"create-volumes-compute-availability.js","sourceRoot":"","sources":["../../../../src/tools/compute/volumes/availability/create-volumes-compute-availability.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,mEAAkE;AAClE,iEAAsF;AAKzE,QAAA,QAAQ,GAAa;IAChC,QAAQ,EAAE,8BAA8B;IACxC,SAAS,EAAE,OAAO;IAClB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,MAAM;IAClB,QAAQ,EAAE,kCAAkC;IAC5C,WAAW,EAAE,4BAA4B;CAC1C,CAAC;AAEW,QAAA,IAAI,GAAS;IACxB,IAAI,EAAE,qCAAqC;IAC3C,WAAW,EACT,uXAAuX;IACzX,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,IAAI,EAAE;gBACJ,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,qBAAqB;aACnC;YACD,IAAI,EAAE;gBACJ,IAAI,EAAE,SAAS;gBACf,WAAW,EAAE,2BAA2B;aACzC;YACD,KAAK,EAAE;gBACL,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,yCAAyC;aACvD;YACD,IAAI,EAAE;gBACJ,IAAI,EAAE,OAAO;gBACb,WAAW,EAAE,+BAA+B;gBAC5C,KAAK,EAAE;oBACL,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,SAAS,EAAE;gBACT,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,WAAW;gBAClB,WAAW,EACT,kWAAkW;aACrW;SACF;QACD,QAAQ,EAAE,CAAC,MAAM,EAAE,MAAM,EAAE,OAAO,CAAC;KACpC;IACD,WAAW,EAAE,EAAE;CAChB,CAAC;AAEK,MAAM,OAAO,GAAG,KAAK,EAAE,MAAmB,EAAE,IAAyC,EAAE,EAAE;IAC9F,MAAM,EAAE,SAAS,EAAE,GAAG,IAAI,EAAE,GAAG,IAAW,CAAC;IAC3C,OAAO,IAAA,2BAAmB,EACxB,MAAM,IAAA,uBAAW,EAAC,SAAS,EAAE,MAAM,MAAM,CAAC,OAAO,CAAC,OAAO,CAAC,YAAY,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CACrF,CAAC;AACJ,CAAC,CAAC;AALW,QAAA,OAAO,WAKlB;AAEF,kBAAe,EAAE,QAAQ,EAAR,gBAAQ,EAAE,IAAI,EAAJ,YAAI,EAAE,OAAO,EAAP,eAAO,EAAE,CAAC"}
|
|
@@ -11,7 +11,7 @@ export const metadata = {
|
|
|
11
11
|
};
|
|
12
12
|
export const tool = {
|
|
13
13
|
name: 'create_volumes_compute_availability',
|
|
14
|
-
description: "When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nCheck Volume Create Availability\n\n# Response Schema\n```json\n{\n type: 'string'\n}\n```",
|
|
14
|
+
description: "When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nCheck Volume Create Availability\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/availability_create_response',\n $defs: {\n availability_create_response: {\n type: 'string'\n }\n }\n}\n```",
|
|
15
15
|
inputSchema: {
|
|
16
16
|
type: 'object',
|
|
17
17
|
properties: {
|
|
@@ -27,6 +27,13 @@ export const tool = {
|
|
|
27
27
|
type: 'string',
|
|
28
28
|
description: 'ID of the VM the Volume is attached to.',
|
|
29
29
|
},
|
|
30
|
+
tags: {
|
|
31
|
+
type: 'array',
|
|
32
|
+
description: 'Tags to attach to the Volume.',
|
|
33
|
+
items: {
|
|
34
|
+
type: 'string',
|
|
35
|
+
},
|
|
36
|
+
},
|
|
30
37
|
jq_filter: {
|
|
31
38
|
type: 'string',
|
|
32
39
|
title: 'jq Filter',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-volumes-compute-availability.mjs","sourceRoot":"","sources":["../../../../src/tools/compute/volumes/availability/create-volumes-compute-availability.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAE,WAAW,EAAE,MAAM,qCAAqC;OAC1D,EAAY,mBAAmB,EAAE,MAAM,uCAAuC;AAKrF,MAAM,CAAC,MAAM,QAAQ,GAAa;IAChC,QAAQ,EAAE,8BAA8B;IACxC,SAAS,EAAE,OAAO;IAClB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,MAAM;IAClB,QAAQ,EAAE,kCAAkC;IAC5C,WAAW,EAAE,4BAA4B;CAC1C,CAAC;AAEF,MAAM,CAAC,MAAM,IAAI,GAAS;IACxB,IAAI,EAAE,qCAAqC;IAC3C,WAAW,EACT,
|
|
1
|
+
{"version":3,"file":"create-volumes-compute-availability.mjs","sourceRoot":"","sources":["../../../../src/tools/compute/volumes/availability/create-volumes-compute-availability.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAE,WAAW,EAAE,MAAM,qCAAqC;OAC1D,EAAY,mBAAmB,EAAE,MAAM,uCAAuC;AAKrF,MAAM,CAAC,MAAM,QAAQ,GAAa;IAChC,QAAQ,EAAE,8BAA8B;IACxC,SAAS,EAAE,OAAO;IAClB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,MAAM;IAClB,QAAQ,EAAE,kCAAkC;IAC5C,WAAW,EAAE,4BAA4B;CAC1C,CAAC;AAEF,MAAM,CAAC,MAAM,IAAI,GAAS;IACxB,IAAI,EAAE,qCAAqC;IAC3C,WAAW,EACT,uXAAuX;IACzX,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,IAAI,EAAE;gBACJ,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,qBAAqB;aACnC;YACD,IAAI,EAAE;gBACJ,IAAI,EAAE,SAAS;gBACf,WAAW,EAAE,2BAA2B;aACzC;YACD,KAAK,EAAE;gBACL,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,yCAAyC;aACvD;YACD,IAAI,EAAE;gBACJ,IAAI,EAAE,OAAO;gBACb,WAAW,EAAE,+BAA+B;gBAC5C,KAAK,EAAE;oBACL,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,SAAS,EAAE;gBACT,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,WAAW;gBAClB,WAAW,EACT,kWAAkW;aACrW;SACF;QACD,QAAQ,EAAE,CAAC,MAAM,EAAE,MAAM,EAAE,OAAO,CAAC;KACpC;IACD,WAAW,EAAE,EAAE;CAChB,CAAC;AAEF,MAAM,CAAC,MAAM,OAAO,GAAG,KAAK,EAAE,MAAmB,EAAE,IAAyC,EAAE,EAAE;IAC9F,MAAM,EAAE,SAAS,EAAE,GAAG,IAAI,EAAE,GAAG,IAAW,CAAC;IAC3C,OAAO,mBAAmB,CACxB,MAAM,WAAW,CAAC,SAAS,EAAE,MAAM,MAAM,CAAC,OAAO,CAAC,OAAO,CAAC,YAAY,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CACrF,CAAC;AACJ,CAAC,CAAC;AAEF,eAAe,EAAE,QAAQ,EAAE,IAAI,EAAE,OAAO,EAAE,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"update-volumes-compute-availability.d.mts","sourceRoot":"","sources":["../../../../src/tools/compute/volumes/availability/update-volumes-compute-availability.ts"],"names":[],"mappings":"OAGO,EAAE,QAAQ,EAAuB,MAAM,uCAAuC;OAE9E,EAAE,IAAI,EAAE,MAAM,oCAAoC;OAClD,WAAW,MAAM,uBAAuB;AAE/C,eAAO,MAAM,QAAQ,EAAE,QAOtB,CAAC;AAEF,eAAO,MAAM,IAAI,EAAE,
|
|
1
|
+
{"version":3,"file":"update-volumes-compute-availability.d.mts","sourceRoot":"","sources":["../../../../src/tools/compute/volumes/availability/update-volumes-compute-availability.ts"],"names":[],"mappings":"OAGO,EAAE,QAAQ,EAAuB,MAAM,uCAAuC;OAE9E,EAAE,IAAI,EAAE,MAAM,oCAAoC;OAClD,WAAW,MAAM,uBAAuB;AAE/C,eAAO,MAAM,QAAQ,EAAE,QAOtB,CAAC;AAEF,eAAO,MAAM,IAAI,EAAE,IAmClB,CAAC;AAEF,eAAO,MAAM,OAAO,GAAU,QAAQ,WAAW,EAAE,MAAM,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS,4EAK3F,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;sBALoC,WAAW,QAAQ,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS;;AAO5F,wBAA2C"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"update-volumes-compute-availability.d.ts","sourceRoot":"","sources":["../../../../src/tools/compute/volumes/availability/update-volumes-compute-availability.ts"],"names":[],"mappings":"OAGO,EAAE,QAAQ,EAAuB,MAAM,uCAAuC;OAE9E,EAAE,IAAI,EAAE,MAAM,oCAAoC;OAClD,WAAW,MAAM,uBAAuB;AAE/C,eAAO,MAAM,QAAQ,EAAE,QAOtB,CAAC;AAEF,eAAO,MAAM,IAAI,EAAE,
|
|
1
|
+
{"version":3,"file":"update-volumes-compute-availability.d.ts","sourceRoot":"","sources":["../../../../src/tools/compute/volumes/availability/update-volumes-compute-availability.ts"],"names":[],"mappings":"OAGO,EAAE,QAAQ,EAAuB,MAAM,uCAAuC;OAE9E,EAAE,IAAI,EAAE,MAAM,oCAAoC;OAClD,WAAW,MAAM,uBAAuB;AAE/C,eAAO,MAAM,QAAQ,EAAE,QAOtB,CAAC;AAEF,eAAO,MAAM,IAAI,EAAE,IAmClB,CAAC;AAEF,eAAO,MAAM,OAAO,GAAU,QAAQ,WAAW,EAAE,MAAM,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS,4EAK3F,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;sBALoC,WAAW,QAAQ,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS;;AAO5F,wBAA2C"}
|
|
@@ -14,7 +14,7 @@ exports.metadata = {
|
|
|
14
14
|
};
|
|
15
15
|
exports.tool = {
|
|
16
16
|
name: 'update_volumes_compute_availability',
|
|
17
|
-
description: "When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nCheck Volume Update Availability\n\n# Response Schema\n```json\n{\n type: 'string'\n}\n```",
|
|
17
|
+
description: "When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nCheck Volume Update Availability\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/availability_update_response',\n $defs: {\n availability_update_response: {\n type: 'string'\n }\n }\n}\n```",
|
|
18
18
|
inputSchema: {
|
|
19
19
|
type: 'object',
|
|
20
20
|
properties: {
|
|
@@ -29,6 +29,13 @@ exports.tool = {
|
|
|
29
29
|
type: 'integer',
|
|
30
30
|
description: 'Size of the Volume in GB.',
|
|
31
31
|
},
|
|
32
|
+
tags: {
|
|
33
|
+
type: 'array',
|
|
34
|
+
description: 'Tags to attach to the Volume.',
|
|
35
|
+
items: {
|
|
36
|
+
type: 'string',
|
|
37
|
+
},
|
|
38
|
+
},
|
|
32
39
|
jq_filter: {
|
|
33
40
|
type: 'string',
|
|
34
41
|
title: 'jq Filter',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"update-volumes-compute-availability.js","sourceRoot":"","sources":["../../../../src/tools/compute/volumes/availability/update-volumes-compute-availability.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,mEAAkE;AAClE,iEAAsF;AAKzE,QAAA,QAAQ,GAAa;IAChC,QAAQ,EAAE,8BAA8B;IACxC,SAAS,EAAE,OAAO;IAClB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,OAAO;IACnB,QAAQ,EAAE,8CAA8C;IACxD,WAAW,EAAE,4BAA4B;CAC1C,CAAC;AAEW,QAAA,IAAI,GAAS;IACxB,IAAI,EAAE,qCAAqC;IAC3C,WAAW,EACT,
|
|
1
|
+
{"version":3,"file":"update-volumes-compute-availability.js","sourceRoot":"","sources":["../../../../src/tools/compute/volumes/availability/update-volumes-compute-availability.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,mEAAkE;AAClE,iEAAsF;AAKzE,QAAA,QAAQ,GAAa;IAChC,QAAQ,EAAE,8BAA8B;IACxC,SAAS,EAAE,OAAO;IAClB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,OAAO;IACnB,QAAQ,EAAE,8CAA8C;IACxD,WAAW,EAAE,4BAA4B;CAC1C,CAAC;AAEW,QAAA,IAAI,GAAS;IACxB,IAAI,EAAE,qCAAqC;IAC3C,WAAW,EACT,uXAAuX;IACzX,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,SAAS,EAAE;gBACT,IAAI,EAAE,QAAQ;aACf;YACD,IAAI,EAAE;gBACJ,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,qBAAqB;aACnC;YACD,IAAI,EAAE;gBACJ,IAAI,EAAE,SAAS;gBACf,WAAW,EAAE,2BAA2B;aACzC;YACD,IAAI,EAAE;gBACJ,IAAI,EAAE,OAAO;gBACb,WAAW,EAAE,+BAA+B;gBAC5C,KAAK,EAAE;oBACL,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,SAAS,EAAE;gBACT,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,WAAW;gBAClB,WAAW,EACT,kWAAkW;aACrW;SACF;QACD,QAAQ,EAAE,CAAC,WAAW,CAAC;KACxB;IACD,WAAW,EAAE,EAAE;CAChB,CAAC;AAEK,MAAM,OAAO,GAAG,KAAK,EAAE,MAAmB,EAAE,IAAyC,EAAE,EAAE;IAC9F,MAAM,EAAE,SAAS,EAAE,SAAS,EAAE,GAAG,IAAI,EAAE,GAAG,IAAW,CAAC;IACtD,OAAO,IAAA,2BAAmB,EACxB,MAAM,IAAA,uBAAW,EAAC,SAAS,EAAE,MAAM,MAAM,CAAC,OAAO,CAAC,OAAO,CAAC,YAAY,CAAC,MAAM,CAAC,SAAS,EAAE,IAAI,CAAC,CAAC,CAChG,CAAC;AACJ,CAAC,CAAC;AALW,QAAA,OAAO,WAKlB;AAEF,kBAAe,EAAE,QAAQ,EAAR,gBAAQ,EAAE,IAAI,EAAJ,YAAI,EAAE,OAAO,EAAP,eAAO,EAAE,CAAC"}
|
|
@@ -11,7 +11,7 @@ export const metadata = {
|
|
|
11
11
|
};
|
|
12
12
|
export const tool = {
|
|
13
13
|
name: 'update_volumes_compute_availability',
|
|
14
|
-
description: "When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nCheck Volume Update Availability\n\n# Response Schema\n```json\n{\n type: 'string'\n}\n```",
|
|
14
|
+
description: "When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nCheck Volume Update Availability\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/availability_update_response',\n $defs: {\n availability_update_response: {\n type: 'string'\n }\n }\n}\n```",
|
|
15
15
|
inputSchema: {
|
|
16
16
|
type: 'object',
|
|
17
17
|
properties: {
|
|
@@ -26,6 +26,13 @@ export const tool = {
|
|
|
26
26
|
type: 'integer',
|
|
27
27
|
description: 'Size of the Volume in GB.',
|
|
28
28
|
},
|
|
29
|
+
tags: {
|
|
30
|
+
type: 'array',
|
|
31
|
+
description: 'Tags to attach to the Volume.',
|
|
32
|
+
items: {
|
|
33
|
+
type: 'string',
|
|
34
|
+
},
|
|
35
|
+
},
|
|
29
36
|
jq_filter: {
|
|
30
37
|
type: 'string',
|
|
31
38
|
title: 'jq Filter',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"update-volumes-compute-availability.mjs","sourceRoot":"","sources":["../../../../src/tools/compute/volumes/availability/update-volumes-compute-availability.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAE,WAAW,EAAE,MAAM,qCAAqC;OAC1D,EAAY,mBAAmB,EAAE,MAAM,uCAAuC;AAKrF,MAAM,CAAC,MAAM,QAAQ,GAAa;IAChC,QAAQ,EAAE,8BAA8B;IACxC,SAAS,EAAE,OAAO;IAClB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,OAAO;IACnB,QAAQ,EAAE,8CAA8C;IACxD,WAAW,EAAE,4BAA4B;CAC1C,CAAC;AAEF,MAAM,CAAC,MAAM,IAAI,GAAS;IACxB,IAAI,EAAE,qCAAqC;IAC3C,WAAW,EACT,
|
|
1
|
+
{"version":3,"file":"update-volumes-compute-availability.mjs","sourceRoot":"","sources":["../../../../src/tools/compute/volumes/availability/update-volumes-compute-availability.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAE,WAAW,EAAE,MAAM,qCAAqC;OAC1D,EAAY,mBAAmB,EAAE,MAAM,uCAAuC;AAKrF,MAAM,CAAC,MAAM,QAAQ,GAAa;IAChC,QAAQ,EAAE,8BAA8B;IACxC,SAAS,EAAE,OAAO;IAClB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,OAAO;IACnB,QAAQ,EAAE,8CAA8C;IACxD,WAAW,EAAE,4BAA4B;CAC1C,CAAC;AAEF,MAAM,CAAC,MAAM,IAAI,GAAS;IACxB,IAAI,EAAE,qCAAqC;IAC3C,WAAW,EACT,uXAAuX;IACzX,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,SAAS,EAAE;gBACT,IAAI,EAAE,QAAQ;aACf;YACD,IAAI,EAAE;gBACJ,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,qBAAqB;aACnC;YACD,IAAI,EAAE;gBACJ,IAAI,EAAE,SAAS;gBACf,WAAW,EAAE,2BAA2B;aACzC;YACD,IAAI,EAAE;gBACJ,IAAI,EAAE,OAAO;gBACb,WAAW,EAAE,+BAA+B;gBAC5C,KAAK,EAAE;oBACL,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,SAAS,EAAE;gBACT,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,WAAW;gBAClB,WAAW,EACT,kWAAkW;aACrW;SACF;QACD,QAAQ,EAAE,CAAC,WAAW,CAAC;KACxB;IACD,WAAW,EAAE,EAAE;CAChB,CAAC;AAEF,MAAM,CAAC,MAAM,OAAO,GAAG,KAAK,EAAE,MAAmB,EAAE,IAAyC,EAAE,EAAE;IAC9F,MAAM,EAAE,SAAS,EAAE,SAAS,EAAE,GAAG,IAAI,EAAE,GAAG,IAAW,CAAC;IACtD,OAAO,mBAAmB,CACxB,MAAM,WAAW,CAAC,SAAS,EAAE,MAAM,MAAM,CAAC,OAAO,CAAC,OAAO,CAAC,YAAY,CAAC,MAAM,CAAC,SAAS,EAAE,IAAI,CAAC,CAAC,CAChG,CAAC;AACJ,CAAC,CAAC;AAEF,eAAe,EAAE,QAAQ,EAAE,IAAI,EAAE,OAAO,EAAE,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-compute-volumes.d.mts","sourceRoot":"","sources":["../../../src/tools/compute/volumes/create-compute-volumes.ts"],"names":[],"mappings":"OAGO,EAAE,QAAQ,EAAuB,MAAM,uCAAuC;OAE9E,EAAE,IAAI,EAAE,MAAM,oCAAoC;OAClD,WAAW,MAAM,uBAAuB;AAE/C,eAAO,MAAM,QAAQ,EAAE,QAOtB,CAAC;AAEF,eAAO,MAAM,IAAI,EAAE,
|
|
1
|
+
{"version":3,"file":"create-compute-volumes.d.mts","sourceRoot":"","sources":["../../../src/tools/compute/volumes/create-compute-volumes.ts"],"names":[],"mappings":"OAGO,EAAE,QAAQ,EAAuB,MAAM,uCAAuC;OAE9E,EAAE,IAAI,EAAE,MAAM,oCAAoC;OAClD,WAAW,MAAM,uBAAuB;AAE/C,eAAO,MAAM,QAAQ,EAAE,QAOtB,CAAC;AAEF,eAAO,MAAM,IAAI,EAAE,IAoClB,CAAC;AAEF,eAAO,MAAM,OAAO,GAAU,QAAQ,WAAW,EAAE,MAAM,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS,4EAG3F,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;sBAHoC,WAAW,QAAQ,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS;;AAK5F,wBAA2C"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-compute-volumes.d.ts","sourceRoot":"","sources":["../../../src/tools/compute/volumes/create-compute-volumes.ts"],"names":[],"mappings":"OAGO,EAAE,QAAQ,EAAuB,MAAM,uCAAuC;OAE9E,EAAE,IAAI,EAAE,MAAM,oCAAoC;OAClD,WAAW,MAAM,uBAAuB;AAE/C,eAAO,MAAM,QAAQ,EAAE,QAOtB,CAAC;AAEF,eAAO,MAAM,IAAI,EAAE,
|
|
1
|
+
{"version":3,"file":"create-compute-volumes.d.ts","sourceRoot":"","sources":["../../../src/tools/compute/volumes/create-compute-volumes.ts"],"names":[],"mappings":"OAGO,EAAE,QAAQ,EAAuB,MAAM,uCAAuC;OAE9E,EAAE,IAAI,EAAE,MAAM,oCAAoC;OAClD,WAAW,MAAM,uBAAuB;AAE/C,eAAO,MAAM,QAAQ,EAAE,QAOtB,CAAC;AAEF,eAAO,MAAM,IAAI,EAAE,IAoClB,CAAC;AAEF,eAAO,MAAM,OAAO,GAAU,QAAQ,WAAW,EAAE,MAAM,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS,4EAG3F,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;sBAHoC,WAAW,QAAQ,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS;;AAK5F,wBAA2C"}
|
|
@@ -30,6 +30,13 @@ exports.tool = {
|
|
|
30
30
|
type: 'string',
|
|
31
31
|
description: 'ID of the VM the Volume is attached to.',
|
|
32
32
|
},
|
|
33
|
+
tags: {
|
|
34
|
+
type: 'array',
|
|
35
|
+
description: 'Tags to attach to the Volume.',
|
|
36
|
+
items: {
|
|
37
|
+
type: 'string',
|
|
38
|
+
},
|
|
39
|
+
},
|
|
33
40
|
jq_filter: {
|
|
34
41
|
type: 'string',
|
|
35
42
|
title: 'jq Filter',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-compute-volumes.js","sourceRoot":"","sources":["../../../src/tools/compute/volumes/create-compute-volumes.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,mEAAkE;AAClE,iEAAsF;AAKzE,QAAA,QAAQ,GAAa;IAChC,QAAQ,EAAE,iBAAiB;IAC3B,SAAS,EAAE,OAAO;IAClB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,MAAM;IAClB,QAAQ,EAAE,qBAAqB;IAC/B,WAAW,EAAE,eAAe;CAC7B,CAAC;AAEW,QAAA,IAAI,GAAS;IACxB,IAAI,EAAE,wBAAwB;IAC9B,WAAW,EACT,07DAA07D;IAC57D,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,IAAI,EAAE;gBACJ,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,qBAAqB;aACnC;YACD,IAAI,EAAE;gBACJ,IAAI,EAAE,SAAS;gBACf,WAAW,EAAE,2BAA2B;aACzC;YACD,KAAK,EAAE;gBACL,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,yCAAyC;aACvD;YACD,SAAS,EAAE;gBACT,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,WAAW;gBAClB,WAAW,EACT,kWAAkW;aACrW;SACF;QACD,QAAQ,EAAE,CAAC,MAAM,EAAE,MAAM,EAAE,OAAO,CAAC;KACpC;IACD,WAAW,EAAE,EAAE;CAChB,CAAC;AAEK,MAAM,OAAO,GAAG,KAAK,EAAE,MAAmB,EAAE,IAAyC,EAAE,EAAE;IAC9F,MAAM,EAAE,SAAS,EAAE,GAAG,IAAI,EAAE,GAAG,IAAW,CAAC;IAC3C,OAAO,IAAA,2BAAmB,EAAC,MAAM,IAAA,uBAAW,EAAC,SAAS,EAAE,MAAM,MAAM,CAAC,OAAO,CAAC,OAAO,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;AACtG,CAAC,CAAC;AAHW,QAAA,OAAO,WAGlB;AAEF,kBAAe,EAAE,QAAQ,EAAR,gBAAQ,EAAE,IAAI,EAAJ,YAAI,EAAE,OAAO,EAAP,eAAO,EAAE,CAAC"}
|
|
1
|
+
{"version":3,"file":"create-compute-volumes.js","sourceRoot":"","sources":["../../../src/tools/compute/volumes/create-compute-volumes.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,mEAAkE;AAClE,iEAAsF;AAKzE,QAAA,QAAQ,GAAa;IAChC,QAAQ,EAAE,iBAAiB;IAC3B,SAAS,EAAE,OAAO;IAClB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,MAAM;IAClB,QAAQ,EAAE,qBAAqB;IAC/B,WAAW,EAAE,eAAe;CAC7B,CAAC;AAEW,QAAA,IAAI,GAAS;IACxB,IAAI,EAAE,wBAAwB;IAC9B,WAAW,EACT,07DAA07D;IAC57D,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,IAAI,EAAE;gBACJ,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,qBAAqB;aACnC;YACD,IAAI,EAAE;gBACJ,IAAI,EAAE,SAAS;gBACf,WAAW,EAAE,2BAA2B;aACzC;YACD,KAAK,EAAE;gBACL,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,yCAAyC;aACvD;YACD,IAAI,EAAE;gBACJ,IAAI,EAAE,OAAO;gBACb,WAAW,EAAE,+BAA+B;gBAC5C,KAAK,EAAE;oBACL,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,SAAS,EAAE;gBACT,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,WAAW;gBAClB,WAAW,EACT,kWAAkW;aACrW;SACF;QACD,QAAQ,EAAE,CAAC,MAAM,EAAE,MAAM,EAAE,OAAO,CAAC;KACpC;IACD,WAAW,EAAE,EAAE;CAChB,CAAC;AAEK,MAAM,OAAO,GAAG,KAAK,EAAE,MAAmB,EAAE,IAAyC,EAAE,EAAE;IAC9F,MAAM,EAAE,SAAS,EAAE,GAAG,IAAI,EAAE,GAAG,IAAW,CAAC;IAC3C,OAAO,IAAA,2BAAmB,EAAC,MAAM,IAAA,uBAAW,EAAC,SAAS,EAAE,MAAM,MAAM,CAAC,OAAO,CAAC,OAAO,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;AACtG,CAAC,CAAC;AAHW,QAAA,OAAO,WAGlB;AAEF,kBAAe,EAAE,QAAQ,EAAR,gBAAQ,EAAE,IAAI,EAAJ,YAAI,EAAE,OAAO,EAAP,eAAO,EAAE,CAAC"}
|
|
@@ -27,6 +27,13 @@ export const tool = {
|
|
|
27
27
|
type: 'string',
|
|
28
28
|
description: 'ID of the VM the Volume is attached to.',
|
|
29
29
|
},
|
|
30
|
+
tags: {
|
|
31
|
+
type: 'array',
|
|
32
|
+
description: 'Tags to attach to the Volume.',
|
|
33
|
+
items: {
|
|
34
|
+
type: 'string',
|
|
35
|
+
},
|
|
36
|
+
},
|
|
30
37
|
jq_filter: {
|
|
31
38
|
type: 'string',
|
|
32
39
|
title: 'jq Filter',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-compute-volumes.mjs","sourceRoot":"","sources":["../../../src/tools/compute/volumes/create-compute-volumes.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAE,WAAW,EAAE,MAAM,qCAAqC;OAC1D,EAAY,mBAAmB,EAAE,MAAM,uCAAuC;AAKrF,MAAM,CAAC,MAAM,QAAQ,GAAa;IAChC,QAAQ,EAAE,iBAAiB;IAC3B,SAAS,EAAE,OAAO;IAClB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,MAAM;IAClB,QAAQ,EAAE,qBAAqB;IAC/B,WAAW,EAAE,eAAe;CAC7B,CAAC;AAEF,MAAM,CAAC,MAAM,IAAI,GAAS;IACxB,IAAI,EAAE,wBAAwB;IAC9B,WAAW,EACT,07DAA07D;IAC57D,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,IAAI,EAAE;gBACJ,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,qBAAqB;aACnC;YACD,IAAI,EAAE;gBACJ,IAAI,EAAE,SAAS;gBACf,WAAW,EAAE,2BAA2B;aACzC;YACD,KAAK,EAAE;gBACL,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,yCAAyC;aACvD;YACD,SAAS,EAAE;gBACT,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,WAAW;gBAClB,WAAW,EACT,kWAAkW;aACrW;SACF;QACD,QAAQ,EAAE,CAAC,MAAM,EAAE,MAAM,EAAE,OAAO,CAAC;KACpC;IACD,WAAW,EAAE,EAAE;CAChB,CAAC;AAEF,MAAM,CAAC,MAAM,OAAO,GAAG,KAAK,EAAE,MAAmB,EAAE,IAAyC,EAAE,EAAE;IAC9F,MAAM,EAAE,SAAS,EAAE,GAAG,IAAI,EAAE,GAAG,IAAW,CAAC;IAC3C,OAAO,mBAAmB,CAAC,MAAM,WAAW,CAAC,SAAS,EAAE,MAAM,MAAM,CAAC,OAAO,CAAC,OAAO,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;AACtG,CAAC,CAAC;AAEF,eAAe,EAAE,QAAQ,EAAE,IAAI,EAAE,OAAO,EAAE,CAAC"}
|
|
1
|
+
{"version":3,"file":"create-compute-volumes.mjs","sourceRoot":"","sources":["../../../src/tools/compute/volumes/create-compute-volumes.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAE,WAAW,EAAE,MAAM,qCAAqC;OAC1D,EAAY,mBAAmB,EAAE,MAAM,uCAAuC;AAKrF,MAAM,CAAC,MAAM,QAAQ,GAAa;IAChC,QAAQ,EAAE,iBAAiB;IAC3B,SAAS,EAAE,OAAO;IAClB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,MAAM;IAClB,QAAQ,EAAE,qBAAqB;IAC/B,WAAW,EAAE,eAAe;CAC7B,CAAC;AAEF,MAAM,CAAC,MAAM,IAAI,GAAS;IACxB,IAAI,EAAE,wBAAwB;IAC9B,WAAW,EACT,07DAA07D;IAC57D,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,IAAI,EAAE;gBACJ,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,qBAAqB;aACnC;YACD,IAAI,EAAE;gBACJ,IAAI,EAAE,SAAS;gBACf,WAAW,EAAE,2BAA2B;aACzC;YACD,KAAK,EAAE;gBACL,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,yCAAyC;aACvD;YACD,IAAI,EAAE;gBACJ,IAAI,EAAE,OAAO;gBACb,WAAW,EAAE,+BAA+B;gBAC5C,KAAK,EAAE;oBACL,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,SAAS,EAAE;gBACT,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,WAAW;gBAClB,WAAW,EACT,kWAAkW;aACrW;SACF;QACD,QAAQ,EAAE,CAAC,MAAM,EAAE,MAAM,EAAE,OAAO,CAAC;KACpC;IACD,WAAW,EAAE,EAAE;CAChB,CAAC;AAEF,MAAM,CAAC,MAAM,OAAO,GAAG,KAAK,EAAE,MAAmB,EAAE,IAAyC,EAAE,EAAE;IAC9F,MAAM,EAAE,SAAS,EAAE,GAAG,IAAI,EAAE,GAAG,IAAW,CAAC;IAC3C,OAAO,mBAAmB,CAAC,MAAM,WAAW,CAAC,SAAS,EAAE,MAAM,MAAM,CAAC,OAAO,CAAC,OAAO,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;AACtG,CAAC,CAAC;AAEF,eAAe,EAAE,QAAQ,EAAE,IAAI,EAAE,OAAO,EAAE,CAAC"}
|