Deprecate the `oxide_subnet_pool` resource in favor of a new `oxide_system_subnet_pool` resource with the following structure. ``` resource "oxide_system_ip_pool" "example" { name = "my-pool" } ``` It will use the following Oxide APIs: * Create: [https://docs.oxide.computer/api/system_subnet_pool_create](<https://docs.oxide.computer/api/system_subnet_pool_create>) * Read: [https://docs.oxide.computer/api/system_subnet_pool_view](<https://docs.oxide.computer/api/system_subnet_pool_view>) * Update: [https://docs.oxide.computer/api/system_subnet_pool_update](<https://docs.oxide.computer/api/system_subnet_pool_update>) * Delete: [https://docs.oxide.computer/api/system_subnet_pool_delete](<https://docs.oxide.computer/api/system_subnet_pool_delete>)
Deprecate the
oxide_subnet_poolresource in favor of a newoxide_system_subnet_poolresource with the following structure.It will use the following Oxide APIs: