- Fix target delete URL path mismatch (/targets/ -> /target/) - Implement target create/delete server handlers with proper validation - Add DeleteTarget method with force flag and mutex locking to SCSITargetService - Implement full LU management: create/list/delete through CLI, client, and server - Add TPGT list command to show target portal group tags - Add unit tests for target/LU router handlers and SCSI service Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
65 lines
1.4 KiB
Go
65 lines
1.4 KiB
Go
/*
|
|
Copyright 2016 The GoStor Authors All rights reserved.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package api
|
|
|
|
type TargetCreateRequest struct {
|
|
Name string
|
|
}
|
|
|
|
type TargetRemoveOptions struct {
|
|
Name string
|
|
Force bool
|
|
}
|
|
|
|
type TargetListOptions struct {
|
|
Name string
|
|
Verbose bool
|
|
}
|
|
|
|
type LuCreateRequest struct {
|
|
TargetName string `json:"targetName"`
|
|
DeviceID uint64 `json:"deviceID"`
|
|
LUN uint64 `json:"lun"`
|
|
Path string `json:"path"`
|
|
BlockShift uint `json:"blockShift"`
|
|
}
|
|
|
|
type LuListOptions struct {
|
|
TargetName string
|
|
}
|
|
|
|
type LuRemoveOptions struct {
|
|
TargetName string `json:"targetName"`
|
|
LUN uint64 `json:"lun"`
|
|
}
|
|
|
|
type LuInfo struct {
|
|
LUN uint64 `json:"lun"`
|
|
Path string `json:"path"`
|
|
Online bool `json:"online"`
|
|
Size uint64 `json:"size"`
|
|
}
|
|
|
|
type TpgtListOptions struct {
|
|
TargetName string
|
|
}
|
|
|
|
type TpgtInfo struct {
|
|
TPGT uint16 `json:"tpgt"`
|
|
Portals []string `json:"portals"`
|
|
}
|