github.com/optim-corp/cios-golang-sdk@v0.5.1/sdk/mock/device_management.go (about)

     1  package ciossdmock
     2  
     3  import (
     4  	_nethttp "net/http"
     5  
     6  	"github.com/optim-corp/cios-golang-sdk/cios"
     7  	ciosctx "github.com/optim-corp/cios-golang-sdk/ctx"
     8  )
     9  
    10  type NoImplementDeviceManagement struct{}
    11  
    12  func (NoImplementDeviceManagement) GetDevices(ctx ciosctx.RequestCtx, request cios.ApiGetDevicesRequest) (cios.MultipleDevice, *_nethttp.Response, error) {
    13  	panic("implement me")
    14  }
    15  
    16  func (NoImplementDeviceManagement) GetDevicesAll(ctx ciosctx.RequestCtx, request cios.ApiGetDevicesRequest) ([]cios.Device, *_nethttp.Response, error) {
    17  	panic("implement me")
    18  }
    19  
    20  func (NoImplementDeviceManagement) GetDevicesUnlimited(ctx ciosctx.RequestCtx, request cios.ApiGetDevicesRequest) ([]cios.Device, *_nethttp.Response, error) {
    21  	panic("implement me")
    22  }
    23  
    24  func (NoImplementDeviceManagement) GetDevice(ctx ciosctx.RequestCtx, s string, s2 *string, b *bool) (cios.Device, *_nethttp.Response, error) {
    25  	panic("implement me")
    26  }
    27  
    28  func (NoImplementDeviceManagement) GetDeviceInventory(ctx ciosctx.RequestCtx, s string) (map[string]interface{}, *_nethttp.Response, error) {
    29  	panic("implement me")
    30  }
    31  
    32  func (NoImplementDeviceManagement) DeleteDevice(ctx ciosctx.RequestCtx, s string) (*_nethttp.Response, error) {
    33  	panic("implement me")
    34  }
    35  
    36  func (NoImplementDeviceManagement) CreateDevice(ctx ciosctx.RequestCtx, info cios.DeviceInfo) (cios.Device, *_nethttp.Response, error) {
    37  	panic("implement me")
    38  }
    39  
    40  func (NoImplementDeviceManagement) UpdateDevice(ctx ciosctx.RequestCtx, s string, request cios.DeviceUpdateRequest) (cios.Device, *_nethttp.Response, error) {
    41  	panic("implement me")
    42  }
    43  
    44  func (NoImplementDeviceManagement) GetMonitoringLatestList(ctx ciosctx.RequestCtx, strings []string) ([]cios.DeviceMonitoring, *_nethttp.Response, error) {
    45  	panic("implement me")
    46  }
    47  
    48  func (NoImplementDeviceManagement) GetMonitoring(ctx ciosctx.RequestCtx, s string) (cios.DeviceMonitoring, *_nethttp.Response, error) {
    49  	panic("implement me")
    50  }
    51  
    52  func (NoImplementDeviceManagement) GetPolicies(ctx ciosctx.RequestCtx, request cios.ApiGetDevicePoliciesRequest) (cios.MultipleDevicePolicy, *_nethttp.Response, error) {
    53  	panic("implement me")
    54  }
    55  
    56  func (NoImplementDeviceManagement) GetPoliciesAll(ctx ciosctx.RequestCtx, request cios.ApiGetDevicePoliciesRequest) ([]cios.DevicePolicy, *_nethttp.Response, error) {
    57  	panic("implement me")
    58  }
    59  
    60  func (NoImplementDeviceManagement) GetPoliciesUnlimited(ctx ciosctx.RequestCtx, request cios.ApiGetDevicePoliciesRequest) ([]cios.DevicePolicy, *_nethttp.Response, error) {
    61  	panic("implement me")
    62  }
    63  
    64  func (NoImplementDeviceManagement) DeletePolicy(ctx ciosctx.RequestCtx, s string) (*_nethttp.Response, error) {
    65  	panic("implement me")
    66  }
    67  
    68  func (NoImplementDeviceManagement) CreatePolicy(ctx ciosctx.RequestCtx, s string) (cios.DevicePolicy, *_nethttp.Response, error) {
    69  	panic("implement me")
    70  }