ns

package
v1.0.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 17, 2018 License: MIT Imports: 5 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var AggregationInterval_name = map[int32]string{
	0: "SECOND",
	1: "MINUTE",
	2: "HOUR",
	3: "DAY",
	4: "WEEK",
	5: "MONTH",
	6: "QUARTER",
	7: "YEAR",
}
View Source
var AggregationInterval_value = map[string]int32{
	"SECOND":  0,
	"MINUTE":  1,
	"HOUR":    2,
	"DAY":     3,
	"WEEK":    4,
	"MONTH":   5,
	"QUARTER": 6,
	"YEAR":    7,
}
View Source
var Modulation_name = map[int32]string{
	0: "LORA",
	1: "FSK",
}
View Source
var Modulation_value = map[string]int32{
	"LORA": 0,
	"FSK":  1,
}
View Source
var RXWindow_name = map[int32]string{
	0: "RX1",
	1: "RX2",
}
View Source
var RXWindow_value = map[string]int32{
	"RX1": 0,
	"RX2": 1,
}
View Source
var RatePolicy_name = map[int32]string{
	0: "DROP",
	1: "MARK",
}
View Source
var RatePolicy_value = map[string]int32{
	"DROP": 0,
	"MARK": 1,
}
View Source
var Region_name = map[int32]string{
	0:  "EU868",
	2:  "US915",
	3:  "CN779",
	4:  "EU433",
	5:  "AU915",
	6:  "CN470",
	7:  "AS923",
	8:  "KR920",
	9:  "IN865",
	10: "RU864",
}
View Source
var Region_value = map[string]int32{
	"EU868": 0,
	"US915": 2,
	"CN779": 3,
	"EU433": 4,
	"AU915": 5,
	"CN470": 6,
	"AS923": 7,
	"KR920": 8,
	"IN865": 9,
	"RU864": 10,
}

Functions

func RegisterNetworkServerServer

func RegisterNetworkServerServer(s *grpc.Server, srv NetworkServerServer)

Types

type ActivateDeviceRequest

type ActivateDeviceRequest struct {
	// Device EUI (8 bytes).
	DevEUI []byte `protobuf:"bytes,1,opt,name=devEUI,proto3" json:"devEUI,omitempty"`
	// The address of the device (4 bytes).
	DevAddr []byte `protobuf:"bytes,2,opt,name=devAddr,proto3" json:"devAddr,omitempty"`
	// The network-session key (16 bytes).
	NwkSKey []byte `protobuf:"bytes,3,opt,name=nwkSKey,proto3" json:"nwkSKey,omitempty"`
	// The next expected uplink frame-counter.
	FCntUp uint32 `protobuf:"varint,4,opt,name=fCntUp" json:"fCntUp,omitempty"`
	// The frame-counter used for the next downlink frame.
	FCntDown uint32 `protobuf:"varint,5,opt,name=fCntDown" json:"fCntDown,omitempty"`
	// Skip frame-counter checks (this is insecure, but could be helpful for debugging).
	SkipFCntCheck        bool     `protobuf:"varint,6,opt,name=skipFCntCheck" json:"skipFCntCheck,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ActivateDeviceRequest) Descriptor

func (*ActivateDeviceRequest) Descriptor() ([]byte, []int)

func (*ActivateDeviceRequest) GetDevAddr

func (m *ActivateDeviceRequest) GetDevAddr() []byte

func (*ActivateDeviceRequest) GetDevEUI

func (m *ActivateDeviceRequest) GetDevEUI() []byte

func (*ActivateDeviceRequest) GetFCntDown

func (m *ActivateDeviceRequest) GetFCntDown() uint32

func (*ActivateDeviceRequest) GetFCntUp

func (m *ActivateDeviceRequest) GetFCntUp() uint32

func (*ActivateDeviceRequest) GetNwkSKey

func (m *ActivateDeviceRequest) GetNwkSKey() []byte

func (*ActivateDeviceRequest) GetSkipFCntCheck

func (m *ActivateDeviceRequest) GetSkipFCntCheck() bool

func (*ActivateDeviceRequest) ProtoMessage

func (*ActivateDeviceRequest) ProtoMessage()

func (*ActivateDeviceRequest) Reset

func (m *ActivateDeviceRequest) Reset()

func (*ActivateDeviceRequest) String

func (m *ActivateDeviceRequest) String() string

func (*ActivateDeviceRequest) XXX_DiscardUnknown

func (m *ActivateDeviceRequest) XXX_DiscardUnknown()

func (*ActivateDeviceRequest) XXX_Marshal

func (m *ActivateDeviceRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ActivateDeviceRequest) XXX_Merge

func (dst *ActivateDeviceRequest) XXX_Merge(src proto.Message)

func (*ActivateDeviceRequest) XXX_Size

func (m *ActivateDeviceRequest) XXX_Size() int

func (*ActivateDeviceRequest) XXX_Unmarshal

func (m *ActivateDeviceRequest) XXX_Unmarshal(b []byte) error

type ActivateDeviceResponse

type ActivateDeviceResponse struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ActivateDeviceResponse) Descriptor

func (*ActivateDeviceResponse) Descriptor() ([]byte, []int)

func (*ActivateDeviceResponse) ProtoMessage

func (*ActivateDeviceResponse) ProtoMessage()

func (*ActivateDeviceResponse) Reset

func (m *ActivateDeviceResponse) Reset()

func (*ActivateDeviceResponse) String

func (m *ActivateDeviceResponse) String() string

func (*ActivateDeviceResponse) XXX_DiscardUnknown

func (m *ActivateDeviceResponse) XXX_DiscardUnknown()

func (*ActivateDeviceResponse) XXX_Marshal

func (m *ActivateDeviceResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ActivateDeviceResponse) XXX_Merge

func (dst *ActivateDeviceResponse) XXX_Merge(src proto.Message)

func (*ActivateDeviceResponse) XXX_Size

func (m *ActivateDeviceResponse) XXX_Size() int

func (*ActivateDeviceResponse) XXX_Unmarshal

func (m *ActivateDeviceResponse) XXX_Unmarshal(b []byte) error

type AggregationInterval

type AggregationInterval int32
const (
	AggregationInterval_SECOND  AggregationInterval = 0
	AggregationInterval_MINUTE  AggregationInterval = 1
	AggregationInterval_HOUR    AggregationInterval = 2
	AggregationInterval_DAY     AggregationInterval = 3
	AggregationInterval_WEEK    AggregationInterval = 4
	AggregationInterval_MONTH   AggregationInterval = 5
	AggregationInterval_QUARTER AggregationInterval = 6
	AggregationInterval_YEAR    AggregationInterval = 7
)

func (AggregationInterval) EnumDescriptor

func (AggregationInterval) EnumDescriptor() ([]byte, []int)

func (AggregationInterval) String

func (x AggregationInterval) String() string

type CreateDeviceProfileRequest

type CreateDeviceProfileRequest struct {
	DeviceProfile        *DeviceProfile `protobuf:"bytes,1,opt,name=deviceProfile" json:"deviceProfile,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*CreateDeviceProfileRequest) Descriptor

func (*CreateDeviceProfileRequest) Descriptor() ([]byte, []int)

func (*CreateDeviceProfileRequest) GetDeviceProfile

func (m *CreateDeviceProfileRequest) GetDeviceProfile() *DeviceProfile

func (*CreateDeviceProfileRequest) ProtoMessage

func (*CreateDeviceProfileRequest) ProtoMessage()

func (*CreateDeviceProfileRequest) Reset

func (m *CreateDeviceProfileRequest) Reset()

func (*CreateDeviceProfileRequest) String

func (m *CreateDeviceProfileRequest) String() string

func (*CreateDeviceProfileRequest) XXX_DiscardUnknown

func (m *CreateDeviceProfileRequest) XXX_DiscardUnknown()

func (*CreateDeviceProfileRequest) XXX_Marshal

func (m *CreateDeviceProfileRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CreateDeviceProfileRequest) XXX_Merge

func (dst *CreateDeviceProfileRequest) XXX_Merge(src proto.Message)

func (*CreateDeviceProfileRequest) XXX_Size

func (m *CreateDeviceProfileRequest) XXX_Size() int

func (*CreateDeviceProfileRequest) XXX_Unmarshal

func (m *CreateDeviceProfileRequest) XXX_Unmarshal(b []byte) error

type CreateDeviceProfileResponse

type CreateDeviceProfileResponse struct {
	DeviceProfileID      string   `protobuf:"bytes,1,opt,name=deviceProfileID" json:"deviceProfileID,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*CreateDeviceProfileResponse) Descriptor

func (*CreateDeviceProfileResponse) Descriptor() ([]byte, []int)

func (*CreateDeviceProfileResponse) GetDeviceProfileID

func (m *CreateDeviceProfileResponse) GetDeviceProfileID() string

func (*CreateDeviceProfileResponse) ProtoMessage

func (*CreateDeviceProfileResponse) ProtoMessage()

func (*CreateDeviceProfileResponse) Reset

func (m *CreateDeviceProfileResponse) Reset()

func (*CreateDeviceProfileResponse) String

func (m *CreateDeviceProfileResponse) String() string

func (*CreateDeviceProfileResponse) XXX_DiscardUnknown

func (m *CreateDeviceProfileResponse) XXX_DiscardUnknown()

func (*CreateDeviceProfileResponse) XXX_Marshal

func (m *CreateDeviceProfileResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CreateDeviceProfileResponse) XXX_Merge

func (dst *CreateDeviceProfileResponse) XXX_Merge(src proto.Message)

func (*CreateDeviceProfileResponse) XXX_Size

func (m *CreateDeviceProfileResponse) XXX_Size() int

func (*CreateDeviceProfileResponse) XXX_Unmarshal

func (m *CreateDeviceProfileResponse) XXX_Unmarshal(b []byte) error

type CreateDeviceQueueItemRequest

type CreateDeviceQueueItemRequest struct {
	Item                 *DeviceQueueItem `protobuf:"bytes,1,opt,name=item" json:"item,omitempty"`
	XXX_NoUnkeyedLiteral struct{}         `json:"-"`
	XXX_unrecognized     []byte           `json:"-"`
	XXX_sizecache        int32            `json:"-"`
}

func (*CreateDeviceQueueItemRequest) Descriptor

func (*CreateDeviceQueueItemRequest) Descriptor() ([]byte, []int)

func (*CreateDeviceQueueItemRequest) GetItem

func (*CreateDeviceQueueItemRequest) ProtoMessage

func (*CreateDeviceQueueItemRequest) ProtoMessage()

func (*CreateDeviceQueueItemRequest) Reset

func (m *CreateDeviceQueueItemRequest) Reset()

func (*CreateDeviceQueueItemRequest) String

func (*CreateDeviceQueueItemRequest) XXX_DiscardUnknown

func (m *CreateDeviceQueueItemRequest) XXX_DiscardUnknown()

func (*CreateDeviceQueueItemRequest) XXX_Marshal

func (m *CreateDeviceQueueItemRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CreateDeviceQueueItemRequest) XXX_Merge

func (dst *CreateDeviceQueueItemRequest) XXX_Merge(src proto.Message)

func (*CreateDeviceQueueItemRequest) XXX_Size

func (m *CreateDeviceQueueItemRequest) XXX_Size() int

func (*CreateDeviceQueueItemRequest) XXX_Unmarshal

func (m *CreateDeviceQueueItemRequest) XXX_Unmarshal(b []byte) error

type CreateDeviceQueueItemResponse

type CreateDeviceQueueItemResponse struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*CreateDeviceQueueItemResponse) Descriptor

func (*CreateDeviceQueueItemResponse) Descriptor() ([]byte, []int)

func (*CreateDeviceQueueItemResponse) ProtoMessage

func (*CreateDeviceQueueItemResponse) ProtoMessage()

func (*CreateDeviceQueueItemResponse) Reset

func (m *CreateDeviceQueueItemResponse) Reset()

func (*CreateDeviceQueueItemResponse) String

func (*CreateDeviceQueueItemResponse) XXX_DiscardUnknown

func (m *CreateDeviceQueueItemResponse) XXX_DiscardUnknown()

func (*CreateDeviceQueueItemResponse) XXX_Marshal

func (m *CreateDeviceQueueItemResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CreateDeviceQueueItemResponse) XXX_Merge

func (dst *CreateDeviceQueueItemResponse) XXX_Merge(src proto.Message)

func (*CreateDeviceQueueItemResponse) XXX_Size

func (m *CreateDeviceQueueItemResponse) XXX_Size() int

func (*CreateDeviceQueueItemResponse) XXX_Unmarshal

func (m *CreateDeviceQueueItemResponse) XXX_Unmarshal(b []byte) error

type CreateDeviceRequest

type CreateDeviceRequest struct {
	Device               *Device  `protobuf:"bytes,1,opt,name=device" json:"device,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*CreateDeviceRequest) Descriptor

func (*CreateDeviceRequest) Descriptor() ([]byte, []int)

func (*CreateDeviceRequest) GetDevice

func (m *CreateDeviceRequest) GetDevice() *Device

func (*CreateDeviceRequest) ProtoMessage

func (*CreateDeviceRequest) ProtoMessage()

func (*CreateDeviceRequest) Reset

func (m *CreateDeviceRequest) Reset()

func (*CreateDeviceRequest) String

func (m *CreateDeviceRequest) String() string

func (*CreateDeviceRequest) XXX_DiscardUnknown

func (m *CreateDeviceRequest) XXX_DiscardUnknown()

func (*CreateDeviceRequest) XXX_Marshal

func (m *CreateDeviceRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CreateDeviceRequest) XXX_Merge

func (dst *CreateDeviceRequest) XXX_Merge(src proto.Message)

func (*CreateDeviceRequest) XXX_Size

func (m *CreateDeviceRequest) XXX_Size() int

func (*CreateDeviceRequest) XXX_Unmarshal

func (m *CreateDeviceRequest) XXX_Unmarshal(b []byte) error

type CreateDeviceResponse

type CreateDeviceResponse struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*CreateDeviceResponse) Descriptor

func (*CreateDeviceResponse) Descriptor() ([]byte, []int)

func (*CreateDeviceResponse) ProtoMessage

func (*CreateDeviceResponse) ProtoMessage()

func (*CreateDeviceResponse) Reset

func (m *CreateDeviceResponse) Reset()

func (*CreateDeviceResponse) String

func (m *CreateDeviceResponse) String() string

func (*CreateDeviceResponse) XXX_DiscardUnknown

func (m *CreateDeviceResponse) XXX_DiscardUnknown()

func (*CreateDeviceResponse) XXX_Marshal

func (m *CreateDeviceResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CreateDeviceResponse) XXX_Merge

func (dst *CreateDeviceResponse) XXX_Merge(src proto.Message)

func (*CreateDeviceResponse) XXX_Size

func (m *CreateDeviceResponse) XXX_Size() int

func (*CreateDeviceResponse) XXX_Unmarshal

func (m *CreateDeviceResponse) XXX_Unmarshal(b []byte) error

type CreateGatewayProfileRequest

type CreateGatewayProfileRequest struct {
	GatewayProfile       *GatewayProfile `protobuf:"bytes,1,opt,name=gatewayProfile" json:"gatewayProfile,omitempty"`
	XXX_NoUnkeyedLiteral struct{}        `json:"-"`
	XXX_unrecognized     []byte          `json:"-"`
	XXX_sizecache        int32           `json:"-"`
}

func (*CreateGatewayProfileRequest) Descriptor

func (*CreateGatewayProfileRequest) Descriptor() ([]byte, []int)

func (*CreateGatewayProfileRequest) GetGatewayProfile

func (m *CreateGatewayProfileRequest) GetGatewayProfile() *GatewayProfile

func (*CreateGatewayProfileRequest) ProtoMessage

func (*CreateGatewayProfileRequest) ProtoMessage()

func (*CreateGatewayProfileRequest) Reset

func (m *CreateGatewayProfileRequest) Reset()

func (*CreateGatewayProfileRequest) String

func (m *CreateGatewayProfileRequest) String() string

func (*CreateGatewayProfileRequest) XXX_DiscardUnknown

func (m *CreateGatewayProfileRequest) XXX_DiscardUnknown()

func (*CreateGatewayProfileRequest) XXX_Marshal

func (m *CreateGatewayProfileRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CreateGatewayProfileRequest) XXX_Merge

func (dst *CreateGatewayProfileRequest) XXX_Merge(src proto.Message)

func (*CreateGatewayProfileRequest) XXX_Size

func (m *CreateGatewayProfileRequest) XXX_Size() int

func (*CreateGatewayProfileRequest) XXX_Unmarshal

func (m *CreateGatewayProfileRequest) XXX_Unmarshal(b []byte) error

type CreateGatewayProfileResponse

type CreateGatewayProfileResponse struct {
	// ID of the create configuration object.
	GatewayProfileID     string   `protobuf:"bytes,1,opt,name=gatewayProfileID" json:"gatewayProfileID,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*CreateGatewayProfileResponse) Descriptor

func (*CreateGatewayProfileResponse) Descriptor() ([]byte, []int)

func (*CreateGatewayProfileResponse) GetGatewayProfileID

func (m *CreateGatewayProfileResponse) GetGatewayProfileID() string

func (*CreateGatewayProfileResponse) ProtoMessage

func (*CreateGatewayProfileResponse) ProtoMessage()

func (*CreateGatewayProfileResponse) Reset

func (m *CreateGatewayProfileResponse) Reset()

func (*CreateGatewayProfileResponse) String

func (*CreateGatewayProfileResponse) XXX_DiscardUnknown

func (m *CreateGatewayProfileResponse) XXX_DiscardUnknown()

func (*CreateGatewayProfileResponse) XXX_Marshal

func (m *CreateGatewayProfileResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CreateGatewayProfileResponse) XXX_Merge

func (dst *CreateGatewayProfileResponse) XXX_Merge(src proto.Message)

func (*CreateGatewayProfileResponse) XXX_Size

func (m *CreateGatewayProfileResponse) XXX_Size() int

func (*CreateGatewayProfileResponse) XXX_Unmarshal

func (m *CreateGatewayProfileResponse) XXX_Unmarshal(b []byte) error

type CreateGatewayRequest

type CreateGatewayRequest struct {
	// MAC address of the gateway.
	Mac []byte `protobuf:"bytes,1,opt,name=mac,proto3" json:"mac,omitempty"`
	// Name of the gateway.
	Name string `protobuf:"bytes,2,opt,name=name" json:"name,omitempty"`
	// Description for the gateway.
	Description string `protobuf:"bytes,3,opt,name=description" json:"description,omitempty"`
	// Latitude of the gateway.
	Latitude float64 `protobuf:"fixed64,4,opt,name=latitude" json:"latitude,omitempty"`
	// Longitude of the gateway.
	Longitude float64 `protobuf:"fixed64,5,opt,name=longitude" json:"longitude,omitempty"`
	// Altitude of the gateway.
	Altitude float64 `protobuf:"fixed64,6,opt,name=altitude" json:"altitude,omitempty"`
	// ID of the gateway-profile (optional).
	GatewayProfileID     string   `protobuf:"bytes,8,opt,name=gatewayProfileID" json:"gatewayProfileID,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*CreateGatewayRequest) Descriptor

func (*CreateGatewayRequest) Descriptor() ([]byte, []int)

func (*CreateGatewayRequest) GetAltitude

func (m *CreateGatewayRequest) GetAltitude() float64

func (*CreateGatewayRequest) GetDescription

func (m *CreateGatewayRequest) GetDescription() string

func (*CreateGatewayRequest) GetGatewayProfileID

func (m *CreateGatewayRequest) GetGatewayProfileID() string

func (*CreateGatewayRequest) GetLatitude

func (m *CreateGatewayRequest) GetLatitude() float64

func (*CreateGatewayRequest) GetLongitude

func (m *CreateGatewayRequest) GetLongitude() float64

func (*CreateGatewayRequest) GetMac

func (m *CreateGatewayRequest) GetMac() []byte

func (*CreateGatewayRequest) GetName

func (m *CreateGatewayRequest) GetName() string

func (*CreateGatewayRequest) ProtoMessage

func (*CreateGatewayRequest) ProtoMessage()

func (*CreateGatewayRequest) Reset

func (m *CreateGatewayRequest) Reset()

func (*CreateGatewayRequest) String

func (m *CreateGatewayRequest) String() string

func (*CreateGatewayRequest) XXX_DiscardUnknown

func (m *CreateGatewayRequest) XXX_DiscardUnknown()

func (*CreateGatewayRequest) XXX_Marshal

func (m *CreateGatewayRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CreateGatewayRequest) XXX_Merge

func (dst *CreateGatewayRequest) XXX_Merge(src proto.Message)

func (*CreateGatewayRequest) XXX_Size

func (m *CreateGatewayRequest) XXX_Size() int

func (*CreateGatewayRequest) XXX_Unmarshal

func (m *CreateGatewayRequest) XXX_Unmarshal(b []byte) error

type CreateGatewayResponse

type CreateGatewayResponse struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*CreateGatewayResponse) Descriptor

func (*CreateGatewayResponse) Descriptor() ([]byte, []int)

func (*CreateGatewayResponse) ProtoMessage

func (*CreateGatewayResponse) ProtoMessage()

func (*CreateGatewayResponse) Reset

func (m *CreateGatewayResponse) Reset()

func (*CreateGatewayResponse) String

func (m *CreateGatewayResponse) String() string

func (*CreateGatewayResponse) XXX_DiscardUnknown

func (m *CreateGatewayResponse) XXX_DiscardUnknown()

func (*CreateGatewayResponse) XXX_Marshal

func (m *CreateGatewayResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CreateGatewayResponse) XXX_Merge

func (dst *CreateGatewayResponse) XXX_Merge(src proto.Message)

func (*CreateGatewayResponse) XXX_Size

func (m *CreateGatewayResponse) XXX_Size() int

func (*CreateGatewayResponse) XXX_Unmarshal

func (m *CreateGatewayResponse) XXX_Unmarshal(b []byte) error

type CreateMACCommandQueueItemRequest

type CreateMACCommandQueueItemRequest struct {
	// DevEUI of the node.
	DevEUI []byte `protobuf:"bytes,1,opt,name=devEUI,proto3" json:"devEUI,omitempty"`
	// Command identifier (specified by the LoRaWAN specs).
	Cid uint32 `protobuf:"varint,4,opt,name=cid" json:"cid,omitempty"`
	// MAC-command(s). In case multiple payloads are defined, then they
	// are always sent within a single frame.
	Commands             [][]byte `protobuf:"bytes,5,rep,name=commands,proto3" json:"commands,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*CreateMACCommandQueueItemRequest) Descriptor

func (*CreateMACCommandQueueItemRequest) Descriptor() ([]byte, []int)

func (*CreateMACCommandQueueItemRequest) GetCid

func (*CreateMACCommandQueueItemRequest) GetCommands

func (m *CreateMACCommandQueueItemRequest) GetCommands() [][]byte

func (*CreateMACCommandQueueItemRequest) GetDevEUI

func (m *CreateMACCommandQueueItemRequest) GetDevEUI() []byte

func (*CreateMACCommandQueueItemRequest) ProtoMessage

func (*CreateMACCommandQueueItemRequest) ProtoMessage()

func (*CreateMACCommandQueueItemRequest) Reset

func (*CreateMACCommandQueueItemRequest) String

func (*CreateMACCommandQueueItemRequest) XXX_DiscardUnknown

func (m *CreateMACCommandQueueItemRequest) XXX_DiscardUnknown()

func (*CreateMACCommandQueueItemRequest) XXX_Marshal

func (m *CreateMACCommandQueueItemRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CreateMACCommandQueueItemRequest) XXX_Merge

func (dst *CreateMACCommandQueueItemRequest) XXX_Merge(src proto.Message)

func (*CreateMACCommandQueueItemRequest) XXX_Size

func (m *CreateMACCommandQueueItemRequest) XXX_Size() int

func (*CreateMACCommandQueueItemRequest) XXX_Unmarshal

func (m *CreateMACCommandQueueItemRequest) XXX_Unmarshal(b []byte) error

type CreateMACCommandQueueItemResponse

type CreateMACCommandQueueItemResponse struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*CreateMACCommandQueueItemResponse) Descriptor

func (*CreateMACCommandQueueItemResponse) Descriptor() ([]byte, []int)

func (*CreateMACCommandQueueItemResponse) ProtoMessage

func (*CreateMACCommandQueueItemResponse) ProtoMessage()

func (*CreateMACCommandQueueItemResponse) Reset

func (*CreateMACCommandQueueItemResponse) String

func (*CreateMACCommandQueueItemResponse) XXX_DiscardUnknown

func (m *CreateMACCommandQueueItemResponse) XXX_DiscardUnknown()

func (*CreateMACCommandQueueItemResponse) XXX_Marshal

func (m *CreateMACCommandQueueItemResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CreateMACCommandQueueItemResponse) XXX_Merge

func (dst *CreateMACCommandQueueItemResponse) XXX_Merge(src proto.Message)

func (*CreateMACCommandQueueItemResponse) XXX_Size

func (m *CreateMACCommandQueueItemResponse) XXX_Size() int

func (*CreateMACCommandQueueItemResponse) XXX_Unmarshal

func (m *CreateMACCommandQueueItemResponse) XXX_Unmarshal(b []byte) error

type CreateRoutingProfileRequest

type CreateRoutingProfileRequest struct {
	RoutingProfile *RoutingProfile `protobuf:"bytes,1,opt,name=routingProfile" json:"routingProfile,omitempty"`
	// ca certificate for connecting to lora-app-server
	CaCert string `protobuf:"bytes,2,opt,name=caCert" json:"caCert,omitempty"`
	// tls certificate for connecting to lora-app-server
	TlsCert string `protobuf:"bytes,3,opt,name=tlsCert" json:"tlsCert,omitempty"`
	// tls key for connecting to lora-app-server
	TlsKey               string   `protobuf:"bytes,4,opt,name=tlsKey" json:"tlsKey,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*CreateRoutingProfileRequest) Descriptor

func (*CreateRoutingProfileRequest) Descriptor() ([]byte, []int)

func (*CreateRoutingProfileRequest) GetCaCert

func (m *CreateRoutingProfileRequest) GetCaCert() string

func (*CreateRoutingProfileRequest) GetRoutingProfile

func (m *CreateRoutingProfileRequest) GetRoutingProfile() *RoutingProfile

func (*CreateRoutingProfileRequest) GetTlsCert

func (m *CreateRoutingProfileRequest) GetTlsCert() string

func (*CreateRoutingProfileRequest) GetTlsKey

func (m *CreateRoutingProfileRequest) GetTlsKey() string

func (*CreateRoutingProfileRequest) ProtoMessage

func (*CreateRoutingProfileRequest) ProtoMessage()

func (*CreateRoutingProfileRequest) Reset

func (m *CreateRoutingProfileRequest) Reset()

func (*CreateRoutingProfileRequest) String

func (m *CreateRoutingProfileRequest) String() string

func (*CreateRoutingProfileRequest) XXX_DiscardUnknown

func (m *CreateRoutingProfileRequest) XXX_DiscardUnknown()

func (*CreateRoutingProfileRequest) XXX_Marshal

func (m *CreateRoutingProfileRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CreateRoutingProfileRequest) XXX_Merge

func (dst *CreateRoutingProfileRequest) XXX_Merge(src proto.Message)

func (*CreateRoutingProfileRequest) XXX_Size

func (m *CreateRoutingProfileRequest) XXX_Size() int

func (*CreateRoutingProfileRequest) XXX_Unmarshal

func (m *CreateRoutingProfileRequest) XXX_Unmarshal(b []byte) error

type CreateRoutingProfileResponse

type CreateRoutingProfileResponse struct {
	RoutingProfileID     string   `protobuf:"bytes,1,opt,name=routingProfileID" json:"routingProfileID,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*CreateRoutingProfileResponse) Descriptor

func (*CreateRoutingProfileResponse) Descriptor() ([]byte, []int)

func (*CreateRoutingProfileResponse) GetRoutingProfileID

func (m *CreateRoutingProfileResponse) GetRoutingProfileID() string

func (*CreateRoutingProfileResponse) ProtoMessage

func (*CreateRoutingProfileResponse) ProtoMessage()

func (*CreateRoutingProfileResponse) Reset

func (m *CreateRoutingProfileResponse) Reset()

func (*CreateRoutingProfileResponse) String

func (*CreateRoutingProfileResponse) XXX_DiscardUnknown

func (m *CreateRoutingProfileResponse) XXX_DiscardUnknown()

func (*CreateRoutingProfileResponse) XXX_Marshal

func (m *CreateRoutingProfileResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CreateRoutingProfileResponse) XXX_Merge

func (dst *CreateRoutingProfileResponse) XXX_Merge(src proto.Message)

func (*CreateRoutingProfileResponse) XXX_Size

func (m *CreateRoutingProfileResponse) XXX_Size() int

func (*CreateRoutingProfileResponse) XXX_Unmarshal

func (m *CreateRoutingProfileResponse) XXX_Unmarshal(b []byte) error

type CreateServiceProfileRequest

type CreateServiceProfileRequest struct {
	ServiceProfile       *ServiceProfile `protobuf:"bytes,1,opt,name=serviceProfile" json:"serviceProfile,omitempty"`
	XXX_NoUnkeyedLiteral struct{}        `json:"-"`
	XXX_unrecognized     []byte          `json:"-"`
	XXX_sizecache        int32           `json:"-"`
}

func (*CreateServiceProfileRequest) Descriptor

func (*CreateServiceProfileRequest) Descriptor() ([]byte, []int)

func (*CreateServiceProfileRequest) GetServiceProfile

func (m *CreateServiceProfileRequest) GetServiceProfile() *ServiceProfile

func (*CreateServiceProfileRequest) ProtoMessage

func (*CreateServiceProfileRequest) ProtoMessage()

func (*CreateServiceProfileRequest) Reset

func (m *CreateServiceProfileRequest) Reset()

func (*CreateServiceProfileRequest) String

func (m *CreateServiceProfileRequest) String() string

func (*CreateServiceProfileRequest) XXX_DiscardUnknown

func (m *CreateServiceProfileRequest) XXX_DiscardUnknown()

func (*CreateServiceProfileRequest) XXX_Marshal

func (m *CreateServiceProfileRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CreateServiceProfileRequest) XXX_Merge

func (dst *CreateServiceProfileRequest) XXX_Merge(src proto.Message)

func (*CreateServiceProfileRequest) XXX_Size

func (m *CreateServiceProfileRequest) XXX_Size() int

func (*CreateServiceProfileRequest) XXX_Unmarshal

func (m *CreateServiceProfileRequest) XXX_Unmarshal(b []byte) error

type CreateServiceProfileResponse

type CreateServiceProfileResponse struct {
	ServiceProfileID     string   `protobuf:"bytes,1,opt,name=serviceProfileID" json:"serviceProfileID,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*CreateServiceProfileResponse) Descriptor

func (*CreateServiceProfileResponse) Descriptor() ([]byte, []int)

func (*CreateServiceProfileResponse) GetServiceProfileID

func (m *CreateServiceProfileResponse) GetServiceProfileID() string

func (*CreateServiceProfileResponse) ProtoMessage

func (*CreateServiceProfileResponse) ProtoMessage()

func (*CreateServiceProfileResponse) Reset

func (m *CreateServiceProfileResponse) Reset()

func (*CreateServiceProfileResponse) String

func (*CreateServiceProfileResponse) XXX_DiscardUnknown

func (m *CreateServiceProfileResponse) XXX_DiscardUnknown()

func (*CreateServiceProfileResponse) XXX_Marshal

func (m *CreateServiceProfileResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CreateServiceProfileResponse) XXX_Merge

func (dst *CreateServiceProfileResponse) XXX_Merge(src proto.Message)

func (*CreateServiceProfileResponse) XXX_Size

func (m *CreateServiceProfileResponse) XXX_Size() int

func (*CreateServiceProfileResponse) XXX_Unmarshal

func (m *CreateServiceProfileResponse) XXX_Unmarshal(b []byte) error

type DataRate

type DataRate struct {
	// The used modulation (LORA or FSK).
	Modulation string `protobuf:"bytes,1,opt,name=modulation" json:"modulation,omitempty"`
	// Bandwidth (in kHz).
	Bandwidth uint32 `protobuf:"varint,2,opt,name=bandwidth" json:"bandwidth,omitempty"`
	// Used spread-factor.
	SpreadFactor uint32 `protobuf:"varint,3,opt,name=spreadFactor" json:"spreadFactor,omitempty"`
	// Bitrate (used for FSK modulation).
	Bitrate              uint32   `protobuf:"varint,4,opt,name=bitrate" json:"bitrate,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*DataRate) Descriptor

func (*DataRate) Descriptor() ([]byte, []int)

func (*DataRate) GetBandwidth

func (m *DataRate) GetBandwidth() uint32

func (*DataRate) GetBitrate

func (m *DataRate) GetBitrate() uint32

func (*DataRate) GetModulation

func (m *DataRate) GetModulation() string

func (*DataRate) GetSpreadFactor

func (m *DataRate) GetSpreadFactor() uint32

func (*DataRate) ProtoMessage

func (*DataRate) ProtoMessage()

func (*DataRate) Reset

func (m *DataRate) Reset()

func (*DataRate) String

func (m *DataRate) String() string

func (*DataRate) XXX_DiscardUnknown

func (m *DataRate) XXX_DiscardUnknown()

func (*DataRate) XXX_Marshal

func (m *DataRate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DataRate) XXX_Merge

func (dst *DataRate) XXX_Merge(src proto.Message)

func (*DataRate) XXX_Size

func (m *DataRate) XXX_Size() int

func (*DataRate) XXX_Unmarshal

func (m *DataRate) XXX_Unmarshal(b []byte) error

type DeactivateDeviceRequest

type DeactivateDeviceRequest struct {
	// Device EUI (8 bytes).
	DevEUI               []byte   `protobuf:"bytes,1,opt,name=devEUI,proto3" json:"devEUI,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*DeactivateDeviceRequest) Descriptor

func (*DeactivateDeviceRequest) Descriptor() ([]byte, []int)

func (*DeactivateDeviceRequest) GetDevEUI

func (m *DeactivateDeviceRequest) GetDevEUI() []byte

func (*DeactivateDeviceRequest) ProtoMessage

func (*DeactivateDeviceRequest) ProtoMessage()

func (*DeactivateDeviceRequest) Reset

func (m *DeactivateDeviceRequest) Reset()

func (*DeactivateDeviceRequest) String

func (m *DeactivateDeviceRequest) String() string

func (*DeactivateDeviceRequest) XXX_DiscardUnknown

func (m *DeactivateDeviceRequest) XXX_DiscardUnknown()

func (*DeactivateDeviceRequest) XXX_Marshal

func (m *DeactivateDeviceRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DeactivateDeviceRequest) XXX_Merge

func (dst *DeactivateDeviceRequest) XXX_Merge(src proto.Message)

func (*DeactivateDeviceRequest) XXX_Size

func (m *DeactivateDeviceRequest) XXX_Size() int

func (*DeactivateDeviceRequest) XXX_Unmarshal

func (m *DeactivateDeviceRequest) XXX_Unmarshal(b []byte) error

type DeactivateDeviceResponse

type DeactivateDeviceResponse struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*DeactivateDeviceResponse) Descriptor

func (*DeactivateDeviceResponse) Descriptor() ([]byte, []int)

func (*DeactivateDeviceResponse) ProtoMessage

func (*DeactivateDeviceResponse) ProtoMessage()

func (*DeactivateDeviceResponse) Reset

func (m *DeactivateDeviceResponse) Reset()

func (*DeactivateDeviceResponse) String

func (m *DeactivateDeviceResponse) String() string

func (*DeactivateDeviceResponse) XXX_DiscardUnknown

func (m *DeactivateDeviceResponse) XXX_DiscardUnknown()

func (*DeactivateDeviceResponse) XXX_Marshal

func (m *DeactivateDeviceResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DeactivateDeviceResponse) XXX_Merge

func (dst *DeactivateDeviceResponse) XXX_Merge(src proto.Message)

func (*DeactivateDeviceResponse) XXX_Size

func (m *DeactivateDeviceResponse) XXX_Size() int

func (*DeactivateDeviceResponse) XXX_Unmarshal

func (m *DeactivateDeviceResponse) XXX_Unmarshal(b []byte) error

type DeleteDeviceProfileRequest

type DeleteDeviceProfileRequest struct {
	DeviceProfileID      string   `protobuf:"bytes,1,opt,name=deviceProfileID" json:"deviceProfileID,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*DeleteDeviceProfileRequest) Descriptor

func (*DeleteDeviceProfileRequest) Descriptor() ([]byte, []int)

func (*DeleteDeviceProfileRequest) GetDeviceProfileID

func (m *DeleteDeviceProfileRequest) GetDeviceProfileID() string

func (*DeleteDeviceProfileRequest) ProtoMessage

func (*DeleteDeviceProfileRequest) ProtoMessage()

func (*DeleteDeviceProfileRequest) Reset

func (m *DeleteDeviceProfileRequest) Reset()

func (*DeleteDeviceProfileRequest) String

func (m *DeleteDeviceProfileRequest) String() string

func (*DeleteDeviceProfileRequest) XXX_DiscardUnknown

func (m *DeleteDeviceProfileRequest) XXX_DiscardUnknown()

func (*DeleteDeviceProfileRequest) XXX_Marshal

func (m *DeleteDeviceProfileRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DeleteDeviceProfileRequest) XXX_Merge

func (dst *DeleteDeviceProfileRequest) XXX_Merge(src proto.Message)

func (*DeleteDeviceProfileRequest) XXX_Size

func (m *DeleteDeviceProfileRequest) XXX_Size() int

func (*DeleteDeviceProfileRequest) XXX_Unmarshal

func (m *DeleteDeviceProfileRequest) XXX_Unmarshal(b []byte) error

type DeleteDeviceProfileResponse

type DeleteDeviceProfileResponse struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*DeleteDeviceProfileResponse) Descriptor

func (*DeleteDeviceProfileResponse) Descriptor() ([]byte, []int)

func (*DeleteDeviceProfileResponse) ProtoMessage

func (*DeleteDeviceProfileResponse) ProtoMessage()

func (*DeleteDeviceProfileResponse) Reset

func (m *DeleteDeviceProfileResponse) Reset()

func (*DeleteDeviceProfileResponse) String

func (m *DeleteDeviceProfileResponse) String() string

func (*DeleteDeviceProfileResponse) XXX_DiscardUnknown

func (m *DeleteDeviceProfileResponse) XXX_DiscardUnknown()

func (*DeleteDeviceProfileResponse) XXX_Marshal

func (m *DeleteDeviceProfileResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DeleteDeviceProfileResponse) XXX_Merge

func (dst *DeleteDeviceProfileResponse) XXX_Merge(src proto.Message)

func (*DeleteDeviceProfileResponse) XXX_Size

func (m *DeleteDeviceProfileResponse) XXX_Size() int

func (*DeleteDeviceProfileResponse) XXX_Unmarshal

func (m *DeleteDeviceProfileResponse) XXX_Unmarshal(b []byte) error

type DeleteDeviceRequest

type DeleteDeviceRequest struct {
	DevEUI               []byte   `protobuf:"bytes,1,opt,name=devEUI,proto3" json:"devEUI,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*DeleteDeviceRequest) Descriptor

func (*DeleteDeviceRequest) Descriptor() ([]byte, []int)

func (*DeleteDeviceRequest) GetDevEUI

func (m *DeleteDeviceRequest) GetDevEUI() []byte

func (*DeleteDeviceRequest) ProtoMessage

func (*DeleteDeviceRequest) ProtoMessage()

func (*DeleteDeviceRequest) Reset

func (m *DeleteDeviceRequest) Reset()

func (*DeleteDeviceRequest) String

func (m *DeleteDeviceRequest) String() string

func (*DeleteDeviceRequest) XXX_DiscardUnknown

func (m *DeleteDeviceRequest) XXX_DiscardUnknown()

func (*DeleteDeviceRequest) XXX_Marshal

func (m *DeleteDeviceRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DeleteDeviceRequest) XXX_Merge

func (dst *DeleteDeviceRequest) XXX_Merge(src proto.Message)

func (*DeleteDeviceRequest) XXX_Size

func (m *DeleteDeviceRequest) XXX_Size() int

func (*DeleteDeviceRequest) XXX_Unmarshal

func (m *DeleteDeviceRequest) XXX_Unmarshal(b []byte) error

type DeleteDeviceResponse

type DeleteDeviceResponse struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*DeleteDeviceResponse) Descriptor

func (*DeleteDeviceResponse) Descriptor() ([]byte, []int)

func (*DeleteDeviceResponse) ProtoMessage

func (*DeleteDeviceResponse) ProtoMessage()

func (*DeleteDeviceResponse) Reset

func (m *DeleteDeviceResponse) Reset()

func (*DeleteDeviceResponse) String

func (m *DeleteDeviceResponse) String() string

func (*DeleteDeviceResponse) XXX_DiscardUnknown

func (m *DeleteDeviceResponse) XXX_DiscardUnknown()

func (*DeleteDeviceResponse) XXX_Marshal

func (m *DeleteDeviceResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DeleteDeviceResponse) XXX_Merge

func (dst *DeleteDeviceResponse) XXX_Merge(src proto.Message)

func (*DeleteDeviceResponse) XXX_Size

func (m *DeleteDeviceResponse) XXX_Size() int

func (*DeleteDeviceResponse) XXX_Unmarshal

func (m *DeleteDeviceResponse) XXX_Unmarshal(b []byte) error

type DeleteGatewayProfileRequest

type DeleteGatewayProfileRequest struct {
	// ID of the gateway-profile.
	GatewayProfileID     string   `protobuf:"bytes,1,opt,name=gatewayProfileID" json:"gatewayProfileID,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*DeleteGatewayProfileRequest) Descriptor

func (*DeleteGatewayProfileRequest) Descriptor() ([]byte, []int)

func (*DeleteGatewayProfileRequest) GetGatewayProfileID

func (m *DeleteGatewayProfileRequest) GetGatewayProfileID() string

func (*DeleteGatewayProfileRequest) ProtoMessage

func (*DeleteGatewayProfileRequest) ProtoMessage()

func (*DeleteGatewayProfileRequest) Reset

func (m *DeleteGatewayProfileRequest) Reset()

func (*DeleteGatewayProfileRequest) String

func (m *DeleteGatewayProfileRequest) String() string

func (*DeleteGatewayProfileRequest) XXX_DiscardUnknown

func (m *DeleteGatewayProfileRequest) XXX_DiscardUnknown()

func (*DeleteGatewayProfileRequest) XXX_Marshal

func (m *DeleteGatewayProfileRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DeleteGatewayProfileRequest) XXX_Merge

func (dst *DeleteGatewayProfileRequest) XXX_Merge(src proto.Message)

func (*DeleteGatewayProfileRequest) XXX_Size

func (m *DeleteGatewayProfileRequest) XXX_Size() int

func (*DeleteGatewayProfileRequest) XXX_Unmarshal

func (m *DeleteGatewayProfileRequest) XXX_Unmarshal(b []byte) error

type DeleteGatewayProfileResponse

type DeleteGatewayProfileResponse struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*DeleteGatewayProfileResponse) Descriptor

func (*DeleteGatewayProfileResponse) Descriptor() ([]byte, []int)

func (*DeleteGatewayProfileResponse) ProtoMessage

func (*DeleteGatewayProfileResponse) ProtoMessage()

func (*DeleteGatewayProfileResponse) Reset

func (m *DeleteGatewayProfileResponse) Reset()

func (*DeleteGatewayProfileResponse) String

func (*DeleteGatewayProfileResponse) XXX_DiscardUnknown

func (m *DeleteGatewayProfileResponse) XXX_DiscardUnknown()

func (*DeleteGatewayProfileResponse) XXX_Marshal

func (m *DeleteGatewayProfileResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DeleteGatewayProfileResponse) XXX_Merge

func (dst *DeleteGatewayProfileResponse) XXX_Merge(src proto.Message)

func (*DeleteGatewayProfileResponse) XXX_Size

func (m *DeleteGatewayProfileResponse) XXX_Size() int

func (*DeleteGatewayProfileResponse) XXX_Unmarshal

func (m *DeleteGatewayProfileResponse) XXX_Unmarshal(b []byte) error

type DeleteGatewayRequest

type DeleteGatewayRequest struct {
	// MAC address of the gateway.
	Mac                  []byte   `protobuf:"bytes,1,opt,name=mac,proto3" json:"mac,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*DeleteGatewayRequest) Descriptor

func (*DeleteGatewayRequest) Descriptor() ([]byte, []int)

func (*DeleteGatewayRequest) GetMac

func (m *DeleteGatewayRequest) GetMac() []byte

func (*DeleteGatewayRequest) ProtoMessage

func (*DeleteGatewayRequest) ProtoMessage()

func (*DeleteGatewayRequest) Reset

func (m *DeleteGatewayRequest) Reset()

func (*DeleteGatewayRequest) String

func (m *DeleteGatewayRequest) String() string

func (*DeleteGatewayRequest) XXX_DiscardUnknown

func (m *DeleteGatewayRequest) XXX_DiscardUnknown()

func (*DeleteGatewayRequest) XXX_Marshal

func (m *DeleteGatewayRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DeleteGatewayRequest) XXX_Merge

func (dst *DeleteGatewayRequest) XXX_Merge(src proto.Message)

func (*DeleteGatewayRequest) XXX_Size

func (m *DeleteGatewayRequest) XXX_Size() int

func (*DeleteGatewayRequest) XXX_Unmarshal

func (m *DeleteGatewayRequest) XXX_Unmarshal(b []byte) error

type DeleteGatewayResponse

type DeleteGatewayResponse struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*DeleteGatewayResponse) Descriptor

func (*DeleteGatewayResponse) Descriptor() ([]byte, []int)

func (*DeleteGatewayResponse) ProtoMessage

func (*DeleteGatewayResponse) ProtoMessage()

func (*DeleteGatewayResponse) Reset

func (m *DeleteGatewayResponse) Reset()

func (*DeleteGatewayResponse) String

func (m *DeleteGatewayResponse) String() string

func (*DeleteGatewayResponse) XXX_DiscardUnknown

func (m *DeleteGatewayResponse) XXX_DiscardUnknown()

func (*DeleteGatewayResponse) XXX_Marshal

func (m *DeleteGatewayResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DeleteGatewayResponse) XXX_Merge

func (dst *DeleteGatewayResponse) XXX_Merge(src proto.Message)

func (*DeleteGatewayResponse) XXX_Size

func (m *DeleteGatewayResponse) XXX_Size() int

func (*DeleteGatewayResponse) XXX_Unmarshal

func (m *DeleteGatewayResponse) XXX_Unmarshal(b []byte) error

type DeleteRoutingProfileRequest

type DeleteRoutingProfileRequest struct {
	RoutingProfileID     string   `protobuf:"bytes,1,opt,name=routingProfileID" json:"routingProfileID,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*DeleteRoutingProfileRequest) Descriptor

func (*DeleteRoutingProfileRequest) Descriptor() ([]byte, []int)

func (*DeleteRoutingProfileRequest) GetRoutingProfileID

func (m *DeleteRoutingProfileRequest) GetRoutingProfileID() string

func (*DeleteRoutingProfileRequest) ProtoMessage

func (*DeleteRoutingProfileRequest) ProtoMessage()

func (*DeleteRoutingProfileRequest) Reset

func (m *DeleteRoutingProfileRequest) Reset()

func (*DeleteRoutingProfileRequest) String

func (m *DeleteRoutingProfileRequest) String() string

func (*DeleteRoutingProfileRequest) XXX_DiscardUnknown

func (m *DeleteRoutingProfileRequest) XXX_DiscardUnknown()

func (*DeleteRoutingProfileRequest) XXX_Marshal

func (m *DeleteRoutingProfileRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DeleteRoutingProfileRequest) XXX_Merge

func (dst *DeleteRoutingProfileRequest) XXX_Merge(src proto.Message)

func (*DeleteRoutingProfileRequest) XXX_Size

func (m *DeleteRoutingProfileRequest) XXX_Size() int

func (*DeleteRoutingProfileRequest) XXX_Unmarshal

func (m *DeleteRoutingProfileRequest) XXX_Unmarshal(b []byte) error

type DeleteRoutingProfileResponse

type DeleteRoutingProfileResponse struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*DeleteRoutingProfileResponse) Descriptor

func (*DeleteRoutingProfileResponse) Descriptor() ([]byte, []int)

func (*DeleteRoutingProfileResponse) ProtoMessage

func (*DeleteRoutingProfileResponse) ProtoMessage()

func (*DeleteRoutingProfileResponse) Reset

func (m *DeleteRoutingProfileResponse) Reset()

func (*DeleteRoutingProfileResponse) String

func (*DeleteRoutingProfileResponse) XXX_DiscardUnknown

func (m *DeleteRoutingProfileResponse) XXX_DiscardUnknown()

func (*DeleteRoutingProfileResponse) XXX_Marshal

func (m *DeleteRoutingProfileResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DeleteRoutingProfileResponse) XXX_Merge

func (dst *DeleteRoutingProfileResponse) XXX_Merge(src proto.Message)

func (*DeleteRoutingProfileResponse) XXX_Size

func (m *DeleteRoutingProfileResponse) XXX_Size() int

func (*DeleteRoutingProfileResponse) XXX_Unmarshal

func (m *DeleteRoutingProfileResponse) XXX_Unmarshal(b []byte) error

type DeleteServiceProfileRequest

type DeleteServiceProfileRequest struct {
	ServiceProfileID     string   `protobuf:"bytes,1,opt,name=serviceProfileID" json:"serviceProfileID,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*DeleteServiceProfileRequest) Descriptor

func (*DeleteServiceProfileRequest) Descriptor() ([]byte, []int)

func (*DeleteServiceProfileRequest) GetServiceProfileID

func (m *DeleteServiceProfileRequest) GetServiceProfileID() string

func (*DeleteServiceProfileRequest) ProtoMessage

func (*DeleteServiceProfileRequest) ProtoMessage()

func (*DeleteServiceProfileRequest) Reset

func (m *DeleteServiceProfileRequest) Reset()

func (*DeleteServiceProfileRequest) String

func (m *DeleteServiceProfileRequest) String() string

func (*DeleteServiceProfileRequest) XXX_DiscardUnknown

func (m *DeleteServiceProfileRequest) XXX_DiscardUnknown()

func (*DeleteServiceProfileRequest) XXX_Marshal

func (m *DeleteServiceProfileRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DeleteServiceProfileRequest) XXX_Merge

func (dst *DeleteServiceProfileRequest) XXX_Merge(src proto.Message)

func (*DeleteServiceProfileRequest) XXX_Size

func (m *DeleteServiceProfileRequest) XXX_Size() int

func (*DeleteServiceProfileRequest) XXX_Unmarshal

func (m *DeleteServiceProfileRequest) XXX_Unmarshal(b []byte) error

type DeleteServiceProfileResponse

type DeleteServiceProfileResponse struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*DeleteServiceProfileResponse) Descriptor

func (*DeleteServiceProfileResponse) Descriptor() ([]byte, []int)

func (*DeleteServiceProfileResponse) ProtoMessage

func (*DeleteServiceProfileResponse) ProtoMessage()

func (*DeleteServiceProfileResponse) Reset

func (m *DeleteServiceProfileResponse) Reset()

func (*DeleteServiceProfileResponse) String

func (*DeleteServiceProfileResponse) XXX_DiscardUnknown

func (m *DeleteServiceProfileResponse) XXX_DiscardUnknown()

func (*DeleteServiceProfileResponse) XXX_Marshal

func (m *DeleteServiceProfileResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DeleteServiceProfileResponse) XXX_Merge

func (dst *DeleteServiceProfileResponse) XXX_Merge(src proto.Message)

func (*DeleteServiceProfileResponse) XXX_Size

func (m *DeleteServiceProfileResponse) XXX_Size() int

func (*DeleteServiceProfileResponse) XXX_Unmarshal

func (m *DeleteServiceProfileResponse) XXX_Unmarshal(b []byte) error

type Device

type Device struct {
	DevEUI               []byte   `protobuf:"bytes,1,opt,name=devEUI,proto3" json:"devEUI,omitempty"`
	DeviceProfileID      string   `protobuf:"bytes,2,opt,name=deviceProfileID" json:"deviceProfileID,omitempty"`
	ServiceProfileID     string   `protobuf:"bytes,3,opt,name=serviceProfileID" json:"serviceProfileID,omitempty"`
	RoutingProfileID     string   `protobuf:"bytes,4,opt,name=routingProfileID" json:"routingProfileID,omitempty"`
	SkipFCntCheck        bool     `protobuf:"varint,5,opt,name=skipFCntCheck" json:"skipFCntCheck,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*Device) Descriptor

func (*Device) Descriptor() ([]byte, []int)

func (*Device) GetDevEUI

func (m *Device) GetDevEUI() []byte

func (*Device) GetDeviceProfileID

func (m *Device) GetDeviceProfileID() string

func (*Device) GetRoutingProfileID

func (m *Device) GetRoutingProfileID() string

func (*Device) GetServiceProfileID

func (m *Device) GetServiceProfileID() string

func (*Device) GetSkipFCntCheck

func (m *Device) GetSkipFCntCheck() bool

func (*Device) ProtoMessage

func (*Device) ProtoMessage()

func (*Device) Reset

func (m *Device) Reset()

func (*Device) String

func (m *Device) String() string

func (*Device) XXX_DiscardUnknown

func (m *Device) XXX_DiscardUnknown()

func (*Device) XXX_Marshal

func (m *Device) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Device) XXX_Merge

func (dst *Device) XXX_Merge(src proto.Message)

func (*Device) XXX_Size

func (m *Device) XXX_Size() int

func (*Device) XXX_Unmarshal

func (m *Device) XXX_Unmarshal(b []byte) error

type DeviceProfile

type DeviceProfile struct {
	DeviceProfileID      string   `protobuf:"bytes,1,opt,name=deviceProfileID" json:"deviceProfileID,omitempty"`
	SupportsClassB       bool     `protobuf:"varint,2,opt,name=supportsClassB" json:"supportsClassB,omitempty"`
	ClassBTimeout        uint32   `protobuf:"varint,3,opt,name=classBTimeout" json:"classBTimeout,omitempty"`
	PingSlotPeriod       uint32   `protobuf:"varint,4,opt,name=pingSlotPeriod" json:"pingSlotPeriod,omitempty"`
	PingSlotDR           uint32   `protobuf:"varint,5,opt,name=pingSlotDR" json:"pingSlotDR,omitempty"`
	PingSlotFreq         uint32   `protobuf:"varint,6,opt,name=pingSlotFreq" json:"pingSlotFreq,omitempty"`
	SupportsClassC       bool     `protobuf:"varint,7,opt,name=supportsClassC" json:"supportsClassC,omitempty"`
	ClassCTimeout        uint32   `protobuf:"varint,8,opt,name=classCTimeout" json:"classCTimeout,omitempty"`
	MacVersion           string   `protobuf:"bytes,9,opt,name=macVersion" json:"macVersion,omitempty"`
	RegParamsRevision    string   `protobuf:"bytes,10,opt,name=regParamsRevision" json:"regParamsRevision,omitempty"`
	RxDelay1             uint32   `protobuf:"varint,11,opt,name=rxDelay1" json:"rxDelay1,omitempty"`
	RxDROffset1          uint32   `protobuf:"varint,12,opt,name=rxDROffset1" json:"rxDROffset1,omitempty"`
	RxDataRate2          uint32   `protobuf:"varint,13,opt,name=rxDataRate2" json:"rxDataRate2,omitempty"`
	RxFreq2              uint32   `protobuf:"varint,14,opt,name=rxFreq2" json:"rxFreq2,omitempty"`
	FactoryPresetFreqs   []uint32 `protobuf:"varint,15,rep,packed,name=factoryPresetFreqs" json:"factoryPresetFreqs,omitempty"`
	MaxEIRP              uint32   `protobuf:"varint,16,opt,name=maxEIRP" json:"maxEIRP,omitempty"`
	MaxDutyCycle         uint32   `protobuf:"varint,17,opt,name=maxDutyCycle" json:"maxDutyCycle,omitempty"`
	SupportsJoin         bool     `protobuf:"varint,18,opt,name=supportsJoin" json:"supportsJoin,omitempty"`
	RfRegion             string   `protobuf:"bytes,19,opt,name=rfRegion" json:"rfRegion,omitempty"`
	Supports32BitFCnt    bool     `protobuf:"varint,20,opt,name=supports32bitFCnt" json:"supports32bitFCnt,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*DeviceProfile) Descriptor

func (*DeviceProfile) Descriptor() ([]byte, []int)

func (*DeviceProfile) GetClassBTimeout

func (m *DeviceProfile) GetClassBTimeout() uint32

func (*DeviceProfile) GetClassCTimeout

func (m *DeviceProfile) GetClassCTimeout() uint32

func (*DeviceProfile) GetDeviceProfileID

func (m *DeviceProfile) GetDeviceProfileID() string

func (*DeviceProfile) GetFactoryPresetFreqs

func (m *DeviceProfile) GetFactoryPresetFreqs() []uint32

func (*DeviceProfile) GetMacVersion

func (m *DeviceProfile) GetMacVersion() string

func (*DeviceProfile) GetMaxDutyCycle

func (m *DeviceProfile) GetMaxDutyCycle() uint32

func (*DeviceProfile) GetMaxEIRP

func (m *DeviceProfile) GetMaxEIRP() uint32

func (*DeviceProfile) GetPingSlotDR

func (m *DeviceProfile) GetPingSlotDR() uint32

func (*DeviceProfile) GetPingSlotFreq

func (m *DeviceProfile) GetPingSlotFreq() uint32

func (*DeviceProfile) GetPingSlotPeriod

func (m *DeviceProfile) GetPingSlotPeriod() uint32

func (*DeviceProfile) GetRegParamsRevision

func (m *DeviceProfile) GetRegParamsRevision() string

func (*DeviceProfile) GetRfRegion

func (m *DeviceProfile) GetRfRegion() string

func (*DeviceProfile) GetRxDROffset1

func (m *DeviceProfile) GetRxDROffset1() uint32

func (*DeviceProfile) GetRxDataRate2

func (m *DeviceProfile) GetRxDataRate2() uint32

func (*DeviceProfile) GetRxDelay1

func (m *DeviceProfile) GetRxDelay1() uint32

func (*DeviceProfile) GetRxFreq2

func (m *DeviceProfile) GetRxFreq2() uint32

func (*DeviceProfile) GetSupports32BitFCnt

func (m *DeviceProfile) GetSupports32BitFCnt() bool

func (*DeviceProfile) GetSupportsClassB

func (m *DeviceProfile) GetSupportsClassB() bool

func (*DeviceProfile) GetSupportsClassC

func (m *DeviceProfile) GetSupportsClassC() bool

func (*DeviceProfile) GetSupportsJoin

func (m *DeviceProfile) GetSupportsJoin() bool

func (*DeviceProfile) ProtoMessage

func (*DeviceProfile) ProtoMessage()

func (*DeviceProfile) Reset

func (m *DeviceProfile) Reset()

func (*DeviceProfile) String

func (m *DeviceProfile) String() string

func (*DeviceProfile) XXX_DiscardUnknown

func (m *DeviceProfile) XXX_DiscardUnknown()

func (*DeviceProfile) XXX_Marshal

func (m *DeviceProfile) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DeviceProfile) XXX_Merge

func (dst *DeviceProfile) XXX_Merge(src proto.Message)

func (*DeviceProfile) XXX_Size

func (m *DeviceProfile) XXX_Size() int

func (*DeviceProfile) XXX_Unmarshal

func (m *DeviceProfile) XXX_Unmarshal(b []byte) error

type DeviceQueueItem

type DeviceQueueItem struct {
	// DevEUI of the device.
	DevEUI []byte `protobuf:"bytes,1,opt,name=devEUI,proto3" json:"devEUI,omitempty"`
	// The encrypted FRMPayload bytes.
	FrmPayload []byte `protobuf:"bytes,2,opt,name=frmPayload,proto3" json:"frmPayload,omitempty"`
	// The FCnt of the payload.
	FCnt uint32 `protobuf:"varint,3,opt,name=fCnt" json:"fCnt,omitempty"`
	// The FPort of the payload.
	FPort uint32 `protobuf:"varint,4,opt,name=fPort" json:"fPort,omitempty"`
	// When set to true, LoRa Server will wait for the device to ack the
	// received frame.
	Confirmed            bool     `protobuf:"varint,5,opt,name=confirmed" json:"confirmed,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*DeviceQueueItem) Descriptor

func (*DeviceQueueItem) Descriptor() ([]byte, []int)

func (*DeviceQueueItem) GetConfirmed

func (m *DeviceQueueItem) GetConfirmed() bool

func (*DeviceQueueItem) GetDevEUI

func (m *DeviceQueueItem) GetDevEUI() []byte

func (*DeviceQueueItem) GetFCnt

func (m *DeviceQueueItem) GetFCnt() uint32

func (*DeviceQueueItem) GetFPort

func (m *DeviceQueueItem) GetFPort() uint32

func (*DeviceQueueItem) GetFrmPayload

func (m *DeviceQueueItem) GetFrmPayload() []byte

func (*DeviceQueueItem) ProtoMessage

func (*DeviceQueueItem) ProtoMessage()

func (*DeviceQueueItem) Reset

func (m *DeviceQueueItem) Reset()

func (*DeviceQueueItem) String

func (m *DeviceQueueItem) String() string

func (*DeviceQueueItem) XXX_DiscardUnknown

func (m *DeviceQueueItem) XXX_DiscardUnknown()

func (*DeviceQueueItem) XXX_Marshal

func (m *DeviceQueueItem) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DeviceQueueItem) XXX_Merge

func (dst *DeviceQueueItem) XXX_Merge(src proto.Message)

func (*DeviceQueueItem) XXX_Size

func (m *DeviceQueueItem) XXX_Size() int

func (*DeviceQueueItem) XXX_Unmarshal

func (m *DeviceQueueItem) XXX_Unmarshal(b []byte) error

type DownlinkFrameLog

type DownlinkFrameLog struct {
	// TX information of the downlink.
	TxInfo *DownlinkTXInfo `protobuf:"bytes,1,opt,name=txInfo" json:"txInfo,omitempty"`
	// LoRaWAN PHYPayload.
	PhyPayload           []byte   `protobuf:"bytes,2,opt,name=phyPayload,proto3" json:"phyPayload,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*DownlinkFrameLog) Descriptor

func (*DownlinkFrameLog) Descriptor() ([]byte, []int)

func (*DownlinkFrameLog) GetPhyPayload

func (m *DownlinkFrameLog) GetPhyPayload() []byte

func (*DownlinkFrameLog) GetTxInfo

func (m *DownlinkFrameLog) GetTxInfo() *DownlinkTXInfo

func (*DownlinkFrameLog) ProtoMessage

func (*DownlinkFrameLog) ProtoMessage()

func (*DownlinkFrameLog) Reset

func (m *DownlinkFrameLog) Reset()

func (*DownlinkFrameLog) String

func (m *DownlinkFrameLog) String() string

func (*DownlinkFrameLog) XXX_DiscardUnknown

func (m *DownlinkFrameLog) XXX_DiscardUnknown()

func (*DownlinkFrameLog) XXX_Marshal

func (m *DownlinkFrameLog) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DownlinkFrameLog) XXX_Merge

func (dst *DownlinkFrameLog) XXX_Merge(src proto.Message)

func (*DownlinkFrameLog) XXX_Size

func (m *DownlinkFrameLog) XXX_Size() int

func (*DownlinkFrameLog) XXX_Unmarshal

func (m *DownlinkFrameLog) XXX_Unmarshal(b []byte) error

type DownlinkTXInfo

type DownlinkTXInfo struct {
	// Gateway MAC.
	Mac []byte `protobuf:"bytes,1,opt,name=mac,proto3" json:"mac,omitempty"`
	// Frame must be sent immediately.
	Immediately bool `protobuf:"varint,2,opt,name=immediately" json:"immediately,omitempty"`
	// Transmit frame at the given time since GPS epoch.
	TimeSinceGPSEpoch string `protobuf:"bytes,3,opt,name=timeSinceGPSEpoch" json:"timeSinceGPSEpoch,omitempty"`
	// Transmit the frame at the given gateway internal timestamp.
	Timestamp uint32 `protobuf:"varint,4,opt,name=timestamp" json:"timestamp,omitempty"`
	// TX frequency (in Hz).
	Frequency uint32 `protobuf:"varint,5,opt,name=frequency" json:"frequency,omitempty"`
	// TX power (in dBm).
	Power int32 `protobuf:"varint,6,opt,name=power" json:"power,omitempty"`
	// Data-rate.
	DataRate *DataRate `protobuf:"bytes,7,opt,name=dataRate" json:"dataRate,omitempty"`
	// Code rate.
	CodeRate string `protobuf:"bytes,8,opt,name=codeRate" json:"codeRate,omitempty"`
	// Lora modulation polarization inversion.
	IPol bool `protobuf:"varint,9,opt,name=iPol" json:"iPol,omitempty"`
	// The board identifier that received the uplink frame.
	Board uint32 `protobuf:"varint,10,opt,name=board" json:"board,omitempty"`
	// THe antenna identifier that received the uplink frame.
	Antenna              uint32   `protobuf:"varint,11,opt,name=antenna" json:"antenna,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*DownlinkTXInfo) Descriptor

func (*DownlinkTXInfo) Descriptor() ([]byte, []int)

func (*DownlinkTXInfo) GetAntenna

func (m *DownlinkTXInfo) GetAntenna() uint32

func (*DownlinkTXInfo) GetBoard

func (m *DownlinkTXInfo) GetBoard() uint32

func (*DownlinkTXInfo) GetCodeRate

func (m *DownlinkTXInfo) GetCodeRate() string

func (*DownlinkTXInfo) GetDataRate

func (m *DownlinkTXInfo) GetDataRate() *DataRate

func (*DownlinkTXInfo) GetFrequency

func (m *DownlinkTXInfo) GetFrequency() uint32

func (*DownlinkTXInfo) GetIPol

func (m *DownlinkTXInfo) GetIPol() bool

func (*DownlinkTXInfo) GetImmediately

func (m *DownlinkTXInfo) GetImmediately() bool

func (*DownlinkTXInfo) GetMac

func (m *DownlinkTXInfo) GetMac() []byte

func (*DownlinkTXInfo) GetPower

func (m *DownlinkTXInfo) GetPower() int32

func (*DownlinkTXInfo) GetTimeSinceGPSEpoch

func (m *DownlinkTXInfo) GetTimeSinceGPSEpoch() string

func (*DownlinkTXInfo) GetTimestamp

func (m *DownlinkTXInfo) GetTimestamp() uint32

func (*DownlinkTXInfo) ProtoMessage

func (*DownlinkTXInfo) ProtoMessage()

func (*DownlinkTXInfo) Reset

func (m *DownlinkTXInfo) Reset()

func (*DownlinkTXInfo) String

func (m *DownlinkTXInfo) String() string

func (*DownlinkTXInfo) XXX_DiscardUnknown

func (m *DownlinkTXInfo) XXX_DiscardUnknown()

func (*DownlinkTXInfo) XXX_Marshal

func (m *DownlinkTXInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DownlinkTXInfo) XXX_Merge

func (dst *DownlinkTXInfo) XXX_Merge(src proto.Message)

func (*DownlinkTXInfo) XXX_Size

func (m *DownlinkTXInfo) XXX_Size() int

func (*DownlinkTXInfo) XXX_Unmarshal

func (m *DownlinkTXInfo) XXX_Unmarshal(b []byte) error

type FlushDeviceQueueForDevEUIRequest

type FlushDeviceQueueForDevEUIRequest struct {
	// DevEUI of the device.
	DevEUI               []byte   `protobuf:"bytes,1,opt,name=devEUI,proto3" json:"devEUI,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*FlushDeviceQueueForDevEUIRequest) Descriptor

func (*FlushDeviceQueueForDevEUIRequest) Descriptor() ([]byte, []int)

func (*FlushDeviceQueueForDevEUIRequest) GetDevEUI

func (m *FlushDeviceQueueForDevEUIRequest) GetDevEUI() []byte

func (*FlushDeviceQueueForDevEUIRequest) ProtoMessage

func (*FlushDeviceQueueForDevEUIRequest) ProtoMessage()

func (*FlushDeviceQueueForDevEUIRequest) Reset

func (*FlushDeviceQueueForDevEUIRequest) String

func (*FlushDeviceQueueForDevEUIRequest) XXX_DiscardUnknown

func (m *FlushDeviceQueueForDevEUIRequest) XXX_DiscardUnknown()

func (*FlushDeviceQueueForDevEUIRequest) XXX_Marshal

func (m *FlushDeviceQueueForDevEUIRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*FlushDeviceQueueForDevEUIRequest) XXX_Merge

func (dst *FlushDeviceQueueForDevEUIRequest) XXX_Merge(src proto.Message)

func (*FlushDeviceQueueForDevEUIRequest) XXX_Size

func (m *FlushDeviceQueueForDevEUIRequest) XXX_Size() int

func (*FlushDeviceQueueForDevEUIRequest) XXX_Unmarshal

func (m *FlushDeviceQueueForDevEUIRequest) XXX_Unmarshal(b []byte) error

type FlushDeviceQueueForDevEUIResponse

type FlushDeviceQueueForDevEUIResponse struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*FlushDeviceQueueForDevEUIResponse) Descriptor

func (*FlushDeviceQueueForDevEUIResponse) Descriptor() ([]byte, []int)

func (*FlushDeviceQueueForDevEUIResponse) ProtoMessage

func (*FlushDeviceQueueForDevEUIResponse) ProtoMessage()

func (*FlushDeviceQueueForDevEUIResponse) Reset

func (*FlushDeviceQueueForDevEUIResponse) String

func (*FlushDeviceQueueForDevEUIResponse) XXX_DiscardUnknown

func (m *FlushDeviceQueueForDevEUIResponse) XXX_DiscardUnknown()

func (*FlushDeviceQueueForDevEUIResponse) XXX_Marshal

func (m *FlushDeviceQueueForDevEUIResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*FlushDeviceQueueForDevEUIResponse) XXX_Merge

func (dst *FlushDeviceQueueForDevEUIResponse) XXX_Merge(src proto.Message)

func (*FlushDeviceQueueForDevEUIResponse) XXX_Size

func (m *FlushDeviceQueueForDevEUIResponse) XXX_Size() int

func (*FlushDeviceQueueForDevEUIResponse) XXX_Unmarshal

func (m *FlushDeviceQueueForDevEUIResponse) XXX_Unmarshal(b []byte) error

type GatewayProfile

type GatewayProfile struct {
	// ID of the gateway-profile.
	GatewayProfileID string `protobuf:"bytes,1,opt,name=gatewayProfileID" json:"gatewayProfileID,omitempty"`
	// Default channels (channels specified by the LoRaWAN Regional Parameters
	// specification) enabled for this configuration.
	Channels []uint32 `protobuf:"varint,2,rep,packed,name=channels" json:"channels,omitempty"`
	// Extra channels added to the channel-configuration (in case the LoRaWAN
	// region supports adding custom channels).
	ExtraChannels        []*GatewayProfileExtraChannel `protobuf:"bytes,3,rep,name=extraChannels" json:"extraChannels,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                      `json:"-"`
	XXX_unrecognized     []byte                        `json:"-"`
	XXX_sizecache        int32                         `json:"-"`
}

func (*GatewayProfile) Descriptor

func (*GatewayProfile) Descriptor() ([]byte, []int)

func (*GatewayProfile) GetChannels

func (m *GatewayProfile) GetChannels() []uint32

func (*GatewayProfile) GetExtraChannels

func (m *GatewayProfile) GetExtraChannels() []*GatewayProfileExtraChannel

func (*GatewayProfile) GetGatewayProfileID

func (m *GatewayProfile) GetGatewayProfileID() string

func (*GatewayProfile) ProtoMessage

func (*GatewayProfile) ProtoMessage()

func (*GatewayProfile) Reset

func (m *GatewayProfile) Reset()

func (*GatewayProfile) String

func (m *GatewayProfile) String() string

func (*GatewayProfile) XXX_DiscardUnknown

func (m *GatewayProfile) XXX_DiscardUnknown()

func (*GatewayProfile) XXX_Marshal

func (m *GatewayProfile) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GatewayProfile) XXX_Merge

func (dst *GatewayProfile) XXX_Merge(src proto.Message)

func (*GatewayProfile) XXX_Size

func (m *GatewayProfile) XXX_Size() int

func (*GatewayProfile) XXX_Unmarshal

func (m *GatewayProfile) XXX_Unmarshal(b []byte) error

type GatewayProfileExtraChannel

type GatewayProfileExtraChannel struct {
	// Modulation.
	Modulation Modulation `protobuf:"varint,1,opt,name=modulation,enum=ns.Modulation" json:"modulation,omitempty"`
	// Frequency.
	Frequency uint32 `protobuf:"varint,2,opt,name=frequency" json:"frequency,omitempty"`
	// Bandwidth.
	Bandwidth uint32 `protobuf:"varint,3,opt,name=bandwidth" json:"bandwidth,omitempty"`
	// Bitrate (in case of FSK modulation).
	Bitrate uint32 `protobuf:"varint,4,opt,name=bitrate" json:"bitrate,omitempty"`
	// Spreading factors (in case of LoRa modulation).
	SpreadingFactors     []uint32 `protobuf:"varint,5,rep,packed,name=spreadingFactors" json:"spreadingFactors,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*GatewayProfileExtraChannel) Descriptor

func (*GatewayProfileExtraChannel) Descriptor() ([]byte, []int)

func (*GatewayProfileExtraChannel) GetBandwidth

func (m *GatewayProfileExtraChannel) GetBandwidth() uint32

func (*GatewayProfileExtraChannel) GetBitrate

func (m *GatewayProfileExtraChannel) GetBitrate() uint32

func (*GatewayProfileExtraChannel) GetFrequency

func (m *GatewayProfileExtraChannel) GetFrequency() uint32

func (*GatewayProfileExtraChannel) GetModulation

func (m *GatewayProfileExtraChannel) GetModulation() Modulation

func (*GatewayProfileExtraChannel) GetSpreadingFactors

func (m *GatewayProfileExtraChannel) GetSpreadingFactors() []uint32

func (*GatewayProfileExtraChannel) ProtoMessage

func (*GatewayProfileExtraChannel) ProtoMessage()

func (*GatewayProfileExtraChannel) Reset

func (m *GatewayProfileExtraChannel) Reset()

func (*GatewayProfileExtraChannel) String

func (m *GatewayProfileExtraChannel) String() string

func (*GatewayProfileExtraChannel) XXX_DiscardUnknown

func (m *GatewayProfileExtraChannel) XXX_DiscardUnknown()

func (*GatewayProfileExtraChannel) XXX_Marshal

func (m *GatewayProfileExtraChannel) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GatewayProfileExtraChannel) XXX_Merge

func (dst *GatewayProfileExtraChannel) XXX_Merge(src proto.Message)

func (*GatewayProfileExtraChannel) XXX_Size

func (m *GatewayProfileExtraChannel) XXX_Size() int

func (*GatewayProfileExtraChannel) XXX_Unmarshal

func (m *GatewayProfileExtraChannel) XXX_Unmarshal(b []byte) error

type GatewayStats

type GatewayStats struct {
	// Timestamp of the (aggregated) measurement.
	Timestamp string `protobuf:"bytes,1,opt,name=timestamp" json:"timestamp,omitempty"`
	// Packets received by the gateway.
	RxPacketsReceived int32 `protobuf:"varint,2,opt,name=rxPacketsReceived" json:"rxPacketsReceived,omitempty"`
	// Packets received by the gateway that passed the CRC check.
	RxPacketsReceivedOK int32 `protobuf:"varint,3,opt,name=rxPacketsReceivedOK" json:"rxPacketsReceivedOK,omitempty"`
	// Packets received by the gateway for transmission.
	TxPacketsReceived int32 `protobuf:"varint,4,opt,name=txPacketsReceived" json:"txPacketsReceived,omitempty"`
	// Packets transmitted by the gateway.
	TxPacketsEmitted     int32    `protobuf:"varint,5,opt,name=txPacketsEmitted" json:"txPacketsEmitted,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*GatewayStats) Descriptor

func (*GatewayStats) Descriptor() ([]byte, []int)

func (*GatewayStats) GetRxPacketsReceived

func (m *GatewayStats) GetRxPacketsReceived() int32

func (*GatewayStats) GetRxPacketsReceivedOK

func (m *GatewayStats) GetRxPacketsReceivedOK() int32

func (*GatewayStats) GetTimestamp

func (m *GatewayStats) GetTimestamp() string

func (*GatewayStats) GetTxPacketsEmitted

func (m *GatewayStats) GetTxPacketsEmitted() int32

func (*GatewayStats) GetTxPacketsReceived

func (m *GatewayStats) GetTxPacketsReceived() int32

func (*GatewayStats) ProtoMessage

func (*GatewayStats) ProtoMessage()

func (*GatewayStats) Reset

func (m *GatewayStats) Reset()

func (*GatewayStats) String

func (m *GatewayStats) String() string

func (*GatewayStats) XXX_DiscardUnknown

func (m *GatewayStats) XXX_DiscardUnknown()

func (*GatewayStats) XXX_Marshal

func (m *GatewayStats) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GatewayStats) XXX_Merge

func (dst *GatewayStats) XXX_Merge(src proto.Message)

func (*GatewayStats) XXX_Size

func (m *GatewayStats) XXX_Size() int

func (*GatewayStats) XXX_Unmarshal

func (m *GatewayStats) XXX_Unmarshal(b []byte) error

type GetDeviceActivationRequest

type GetDeviceActivationRequest struct {
	// Device EUI (8 bytes).
	DevEUI               []byte   `protobuf:"bytes,1,opt,name=devEUI,proto3" json:"devEUI,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*GetDeviceActivationRequest) Descriptor

func (*GetDeviceActivationRequest) Descriptor() ([]byte, []int)

func (*GetDeviceActivationRequest) GetDevEUI

func (m *GetDeviceActivationRequest) GetDevEUI() []byte

func (*GetDeviceActivationRequest) ProtoMessage

func (*GetDeviceActivationRequest) ProtoMessage()

func (*GetDeviceActivationRequest) Reset

func (m *GetDeviceActivationRequest) Reset()

func (*GetDeviceActivationRequest) String

func (m *GetDeviceActivationRequest) String() string

func (*GetDeviceActivationRequest) XXX_DiscardUnknown

func (m *GetDeviceActivationRequest) XXX_DiscardUnknown()

func (*GetDeviceActivationRequest) XXX_Marshal

func (m *GetDeviceActivationRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetDeviceActivationRequest) XXX_Merge

func (dst *GetDeviceActivationRequest) XXX_Merge(src proto.Message)

func (*GetDeviceActivationRequest) XXX_Size

func (m *GetDeviceActivationRequest) XXX_Size() int

func (*GetDeviceActivationRequest) XXX_Unmarshal

func (m *GetDeviceActivationRequest) XXX_Unmarshal(b []byte) error

type GetDeviceActivationResponse

type GetDeviceActivationResponse struct {
	// The address of the device (4 bytes).
	DevAddr []byte `protobuf:"bytes,1,opt,name=devAddr,proto3" json:"devAddr,omitempty"`
	// The network-session key (16 bytes).
	NwkSKey []byte `protobuf:"bytes,2,opt,name=nwkSKey,proto3" json:"nwkSKey,omitempty"`
	// The next expected uplink frame-counter.
	FCntUp uint32 `protobuf:"varint,3,opt,name=fCntUp" json:"fCntUp,omitempty"`
	// The frame-counter used for the next downlink frame.
	FCntDown uint32 `protobuf:"varint,4,opt,name=fCntDown" json:"fCntDown,omitempty"`
	// Skip frame-counter checks (this is insecure, but could be helpful for debugging).
	SkipFCntCheck        bool     `protobuf:"varint,5,opt,name=skipFCntCheck" json:"skipFCntCheck,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*GetDeviceActivationResponse) Descriptor

func (*GetDeviceActivationResponse) Descriptor() ([]byte, []int)

func (*GetDeviceActivationResponse) GetDevAddr

func (m *GetDeviceActivationResponse) GetDevAddr() []byte

func (*GetDeviceActivationResponse) GetFCntDown

func (m *GetDeviceActivationResponse) GetFCntDown() uint32

func (*GetDeviceActivationResponse) GetFCntUp

func (m *GetDeviceActivationResponse) GetFCntUp() uint32

func (*GetDeviceActivationResponse) GetNwkSKey

func (m *GetDeviceActivationResponse) GetNwkSKey() []byte

func (*GetDeviceActivationResponse) GetSkipFCntCheck

func (m *GetDeviceActivationResponse) GetSkipFCntCheck() bool

func (*GetDeviceActivationResponse) ProtoMessage

func (*GetDeviceActivationResponse) ProtoMessage()

func (*GetDeviceActivationResponse) Reset

func (m *GetDeviceActivationResponse) Reset()

func (*GetDeviceActivationResponse) String

func (m *GetDeviceActivationResponse) String() string

func (*GetDeviceActivationResponse) XXX_DiscardUnknown

func (m *GetDeviceActivationResponse) XXX_DiscardUnknown()

func (*GetDeviceActivationResponse) XXX_Marshal

func (m *GetDeviceActivationResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetDeviceActivationResponse) XXX_Merge

func (dst *GetDeviceActivationResponse) XXX_Merge(src proto.Message)

func (*GetDeviceActivationResponse) XXX_Size

func (m *GetDeviceActivationResponse) XXX_Size() int

func (*GetDeviceActivationResponse) XXX_Unmarshal

func (m *GetDeviceActivationResponse) XXX_Unmarshal(b []byte) error

type GetDeviceProfileRequest

type GetDeviceProfileRequest struct {
	DeviceProfileID      string   `protobuf:"bytes,1,opt,name=deviceProfileID" json:"deviceProfileID,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*GetDeviceProfileRequest) Descriptor

func (*GetDeviceProfileRequest) Descriptor() ([]byte, []int)

func (*GetDeviceProfileRequest) GetDeviceProfileID

func (m *GetDeviceProfileRequest) GetDeviceProfileID() string

func (*GetDeviceProfileRequest) ProtoMessage

func (*GetDeviceProfileRequest) ProtoMessage()

func (*GetDeviceProfileRequest) Reset

func (m *GetDeviceProfileRequest) Reset()

func (*GetDeviceProfileRequest) String

func (m *GetDeviceProfileRequest) String() string

func (*GetDeviceProfileRequest) XXX_DiscardUnknown

func (m *GetDeviceProfileRequest) XXX_DiscardUnknown()

func (*GetDeviceProfileRequest) XXX_Marshal

func (m *GetDeviceProfileRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetDeviceProfileRequest) XXX_Merge

func (dst *GetDeviceProfileRequest) XXX_Merge(src proto.Message)

func (*GetDeviceProfileRequest) XXX_Size

func (m *GetDeviceProfileRequest) XXX_Size() int

func (*GetDeviceProfileRequest) XXX_Unmarshal

func (m *GetDeviceProfileRequest) XXX_Unmarshal(b []byte) error

type GetDeviceProfileResponse

type GetDeviceProfileResponse struct {
	DeviceProfile        *DeviceProfile `protobuf:"bytes,1,opt,name=deviceProfile" json:"deviceProfile,omitempty"`
	CreatedAt            string         `protobuf:"bytes,2,opt,name=createdAt" json:"createdAt,omitempty"`
	UpdatedAt            string         `protobuf:"bytes,3,opt,name=updatedAt" json:"updatedAt,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*GetDeviceProfileResponse) Descriptor

func (*GetDeviceProfileResponse) Descriptor() ([]byte, []int)

func (*GetDeviceProfileResponse) GetCreatedAt

func (m *GetDeviceProfileResponse) GetCreatedAt() string

func (*GetDeviceProfileResponse) GetDeviceProfile

func (m *GetDeviceProfileResponse) GetDeviceProfile() *DeviceProfile

func (*GetDeviceProfileResponse) GetUpdatedAt

func (m *GetDeviceProfileResponse) GetUpdatedAt() string

func (*GetDeviceProfileResponse) ProtoMessage

func (*GetDeviceProfileResponse) ProtoMessage()

func (*GetDeviceProfileResponse) Reset

func (m *GetDeviceProfileResponse) Reset()

func (*GetDeviceProfileResponse) String

func (m *GetDeviceProfileResponse) String() string

func (*GetDeviceProfileResponse) XXX_DiscardUnknown

func (m *GetDeviceProfileResponse) XXX_DiscardUnknown()

func (*GetDeviceProfileResponse) XXX_Marshal

func (m *GetDeviceProfileResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetDeviceProfileResponse) XXX_Merge

func (dst *GetDeviceProfileResponse) XXX_Merge(src proto.Message)

func (*GetDeviceProfileResponse) XXX_Size

func (m *GetDeviceProfileResponse) XXX_Size() int

func (*GetDeviceProfileResponse) XXX_Unmarshal

func (m *GetDeviceProfileResponse) XXX_Unmarshal(b []byte) error

type GetDeviceQueueItemsForDevEUIRequest

type GetDeviceQueueItemsForDevEUIRequest struct {
	// DevEUI of the device.
	DevEUI               []byte   `protobuf:"bytes,1,opt,name=devEUI,proto3" json:"devEUI,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*GetDeviceQueueItemsForDevEUIRequest) Descriptor

func (*GetDeviceQueueItemsForDevEUIRequest) Descriptor() ([]byte, []int)

func (*GetDeviceQueueItemsForDevEUIRequest) GetDevEUI

func (m *GetDeviceQueueItemsForDevEUIRequest) GetDevEUI() []byte

func (*GetDeviceQueueItemsForDevEUIRequest) ProtoMessage

func (*GetDeviceQueueItemsForDevEUIRequest) ProtoMessage()

func (*GetDeviceQueueItemsForDevEUIRequest) Reset

func (*GetDeviceQueueItemsForDevEUIRequest) String

func (*GetDeviceQueueItemsForDevEUIRequest) XXX_DiscardUnknown

func (m *GetDeviceQueueItemsForDevEUIRequest) XXX_DiscardUnknown()

func (*GetDeviceQueueItemsForDevEUIRequest) XXX_Marshal

func (m *GetDeviceQueueItemsForDevEUIRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetDeviceQueueItemsForDevEUIRequest) XXX_Merge

func (*GetDeviceQueueItemsForDevEUIRequest) XXX_Size

func (*GetDeviceQueueItemsForDevEUIRequest) XXX_Unmarshal

func (m *GetDeviceQueueItemsForDevEUIRequest) XXX_Unmarshal(b []byte) error

type GetDeviceQueueItemsForDevEUIResponse

type GetDeviceQueueItemsForDevEUIResponse struct {
	Items                []*DeviceQueueItem `protobuf:"bytes,1,rep,name=items" json:"items,omitempty"`
	XXX_NoUnkeyedLiteral struct{}           `json:"-"`
	XXX_unrecognized     []byte             `json:"-"`
	XXX_sizecache        int32              `json:"-"`
}

func (*GetDeviceQueueItemsForDevEUIResponse) Descriptor

func (*GetDeviceQueueItemsForDevEUIResponse) Descriptor() ([]byte, []int)

func (*GetDeviceQueueItemsForDevEUIResponse) GetItems

func (*GetDeviceQueueItemsForDevEUIResponse) ProtoMessage

func (*GetDeviceQueueItemsForDevEUIResponse) ProtoMessage()

func (*GetDeviceQueueItemsForDevEUIResponse) Reset

func (*GetDeviceQueueItemsForDevEUIResponse) String

func (*GetDeviceQueueItemsForDevEUIResponse) XXX_DiscardUnknown

func (m *GetDeviceQueueItemsForDevEUIResponse) XXX_DiscardUnknown()

func (*GetDeviceQueueItemsForDevEUIResponse) XXX_Marshal

func (m *GetDeviceQueueItemsForDevEUIResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetDeviceQueueItemsForDevEUIResponse) XXX_Merge

func (*GetDeviceQueueItemsForDevEUIResponse) XXX_Size

func (*GetDeviceQueueItemsForDevEUIResponse) XXX_Unmarshal

func (m *GetDeviceQueueItemsForDevEUIResponse) XXX_Unmarshal(b []byte) error

type GetDeviceRequest

type GetDeviceRequest struct {
	DevEUI               []byte   `protobuf:"bytes,1,opt,name=devEUI,proto3" json:"devEUI,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*GetDeviceRequest) Descriptor

func (*GetDeviceRequest) Descriptor() ([]byte, []int)

func (*GetDeviceRequest) GetDevEUI

func (m *GetDeviceRequest) GetDevEUI() []byte

func (*GetDeviceRequest) ProtoMessage

func (*GetDeviceRequest) ProtoMessage()

func (*GetDeviceRequest) Reset

func (m *GetDeviceRequest) Reset()

func (*GetDeviceRequest) String

func (m *GetDeviceRequest) String() string

func (*GetDeviceRequest) XXX_DiscardUnknown

func (m *GetDeviceRequest) XXX_DiscardUnknown()

func (*GetDeviceRequest) XXX_Marshal

func (m *GetDeviceRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetDeviceRequest) XXX_Merge

func (dst *GetDeviceRequest) XXX_Merge(src proto.Message)

func (*GetDeviceRequest) XXX_Size

func (m *GetDeviceRequest) XXX_Size() int

func (*GetDeviceRequest) XXX_Unmarshal

func (m *GetDeviceRequest) XXX_Unmarshal(b []byte) error

type GetDeviceResponse

type GetDeviceResponse struct {
	Device               *Device  `protobuf:"bytes,1,opt,name=device" json:"device,omitempty"`
	CreatedAt            string   `protobuf:"bytes,2,opt,name=createdAt" json:"createdAt,omitempty"`
	UpdatedAt            string   `protobuf:"bytes,3,opt,name=updatedAt" json:"updatedAt,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*GetDeviceResponse) Descriptor

func (*GetDeviceResponse) Descriptor() ([]byte, []int)

func (*GetDeviceResponse) GetCreatedAt

func (m *GetDeviceResponse) GetCreatedAt() string

func (*GetDeviceResponse) GetDevice

func (m *GetDeviceResponse) GetDevice() *Device

func (*GetDeviceResponse) GetUpdatedAt

func (m *GetDeviceResponse) GetUpdatedAt() string

func (*GetDeviceResponse) ProtoMessage

func (*GetDeviceResponse) ProtoMessage()

func (*GetDeviceResponse) Reset

func (m *GetDeviceResponse) Reset()

func (*GetDeviceResponse) String

func (m *GetDeviceResponse) String() string

func (*GetDeviceResponse) XXX_DiscardUnknown

func (m *GetDeviceResponse) XXX_DiscardUnknown()

func (*GetDeviceResponse) XXX_Marshal

func (m *GetDeviceResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetDeviceResponse) XXX_Merge

func (dst *GetDeviceResponse) XXX_Merge(src proto.Message)

func (*GetDeviceResponse) XXX_Size

func (m *GetDeviceResponse) XXX_Size() int

func (*GetDeviceResponse) XXX_Unmarshal

func (m *GetDeviceResponse) XXX_Unmarshal(b []byte) error

type GetGatewayProfileRequest

type GetGatewayProfileRequest struct {
	// ID of the gateway-profile.
	GatewayProfileID     string   `protobuf:"bytes,1,opt,name=gatewayProfileID" json:"gatewayProfileID,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*GetGatewayProfileRequest) Descriptor

func (*GetGatewayProfileRequest) Descriptor() ([]byte, []int)

func (*GetGatewayProfileRequest) GetGatewayProfileID

func (m *GetGatewayProfileRequest) GetGatewayProfileID() string

func (*GetGatewayProfileRequest) ProtoMessage

func (*GetGatewayProfileRequest) ProtoMessage()

func (*GetGatewayProfileRequest) Reset

func (m *GetGatewayProfileRequest) Reset()

func (*GetGatewayProfileRequest) String

func (m *GetGatewayProfileRequest) String() string

func (*GetGatewayProfileRequest) XXX_DiscardUnknown

func (m *GetGatewayProfileRequest) XXX_DiscardUnknown()

func (*GetGatewayProfileRequest) XXX_Marshal

func (m *GetGatewayProfileRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetGatewayProfileRequest) XXX_Merge

func (dst *GetGatewayProfileRequest) XXX_Merge(src proto.Message)

func (*GetGatewayProfileRequest) XXX_Size

func (m *GetGatewayProfileRequest) XXX_Size() int

func (*GetGatewayProfileRequest) XXX_Unmarshal

func (m *GetGatewayProfileRequest) XXX_Unmarshal(b []byte) error

type GetGatewayProfileResponse

type GetGatewayProfileResponse struct {
	GatewayProfile       *GatewayProfile `protobuf:"bytes,1,opt,name=gatewayProfile" json:"gatewayProfile,omitempty"`
	CreatedAt            string          `protobuf:"bytes,2,opt,name=createdAt" json:"createdAt,omitempty"`
	UpdatedAt            string          `protobuf:"bytes,3,opt,name=updatedAt" json:"updatedAt,omitempty"`
	XXX_NoUnkeyedLiteral struct{}        `json:"-"`
	XXX_unrecognized     []byte          `json:"-"`
	XXX_sizecache        int32           `json:"-"`
}

func (*GetGatewayProfileResponse) Descriptor

func (*GetGatewayProfileResponse) Descriptor() ([]byte, []int)

func (*GetGatewayProfileResponse) GetCreatedAt

func (m *GetGatewayProfileResponse) GetCreatedAt() string

func (*GetGatewayProfileResponse) GetGatewayProfile

func (m *GetGatewayProfileResponse) GetGatewayProfile() *GatewayProfile

func (*GetGatewayProfileResponse) GetUpdatedAt

func (m *GetGatewayProfileResponse) GetUpdatedAt() string

func (*GetGatewayProfileResponse) ProtoMessage

func (*GetGatewayProfileResponse) ProtoMessage()

func (*GetGatewayProfileResponse) Reset

func (m *GetGatewayProfileResponse) Reset()

func (*GetGatewayProfileResponse) String

func (m *GetGatewayProfileResponse) String() string

func (*GetGatewayProfileResponse) XXX_DiscardUnknown

func (m *GetGatewayProfileResponse) XXX_DiscardUnknown()

func (*GetGatewayProfileResponse) XXX_Marshal

func (m *GetGatewayProfileResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetGatewayProfileResponse) XXX_Merge

func (dst *GetGatewayProfileResponse) XXX_Merge(src proto.Message)

func (*GetGatewayProfileResponse) XXX_Size

func (m *GetGatewayProfileResponse) XXX_Size() int

func (*GetGatewayProfileResponse) XXX_Unmarshal

func (m *GetGatewayProfileResponse) XXX_Unmarshal(b []byte) error

type GetGatewayRequest

type GetGatewayRequest struct {
	// MAC address of the gateway.
	Mac                  []byte   `protobuf:"bytes,1,opt,name=mac,proto3" json:"mac,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*GetGatewayRequest) Descriptor

func (*GetGatewayRequest) Descriptor() ([]byte, []int)

func (*GetGatewayRequest) GetMac

func (m *GetGatewayRequest) GetMac() []byte

func (*GetGatewayRequest) ProtoMessage

func (*GetGatewayRequest) ProtoMessage()

func (*GetGatewayRequest) Reset

func (m *GetGatewayRequest) Reset()

func (*GetGatewayRequest) String

func (m *GetGatewayRequest) String() string

func (*GetGatewayRequest) XXX_DiscardUnknown

func (m *GetGatewayRequest) XXX_DiscardUnknown()

func (*GetGatewayRequest) XXX_Marshal

func (m *GetGatewayRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetGatewayRequest) XXX_Merge

func (dst *GetGatewayRequest) XXX_Merge(src proto.Message)

func (*GetGatewayRequest) XXX_Size

func (m *GetGatewayRequest) XXX_Size() int

func (*GetGatewayRequest) XXX_Unmarshal

func (m *GetGatewayRequest) XXX_Unmarshal(b []byte) error

type GetGatewayResponse

type GetGatewayResponse struct {
	// MAC address of the gateway.
	Mac []byte `protobuf:"bytes,1,opt,name=mac,proto3" json:"mac,omitempty"`
	// Name of the gateway.
	Name string `protobuf:"bytes,2,opt,name=name" json:"name,omitempty"`
	// Description for the gateway.
	Description string `protobuf:"bytes,3,opt,name=description" json:"description,omitempty"`
	// Latitude of the gateway.
	Latitude float64 `protobuf:"fixed64,4,opt,name=latitude" json:"latitude,omitempty"`
	// Longitude of the gateway.
	Longitude float64 `protobuf:"fixed64,5,opt,name=longitude" json:"longitude,omitempty"`
	// Altitude of the gateway.
	Altitude float64 `protobuf:"fixed64,6,opt,name=altitude" json:"altitude,omitempty"`
	// The timestamp when the gateway was created.
	CreatedAt string `protobuf:"bytes,7,opt,name=createdAt" json:"createdAt,omitempty"`
	// The timestamp when the gateway was last updated.
	UpdatedAt string `protobuf:"bytes,8,opt,name=updatedAt" json:"updatedAt,omitempty"`
	// The timestamp when the gateway was first seen.
	FirstSeenAt string `protobuf:"bytes,9,opt,name=firstSeenAt" json:"firstSeenAt,omitempty"`
	// The timestamp when the gateway was last seen.
	LastSeenAt string `protobuf:"bytes,10,opt,name=lastSeenAt" json:"lastSeenAt,omitempty"`
	// ID of the gateway-profile (optional).
	GatewayProfileID     string   `protobuf:"bytes,12,opt,name=gatewayProfileID" json:"gatewayProfileID,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*GetGatewayResponse) Descriptor

func (*GetGatewayResponse) Descriptor() ([]byte, []int)

func (*GetGatewayResponse) GetAltitude

func (m *GetGatewayResponse) GetAltitude() float64

func (*GetGatewayResponse) GetCreatedAt

func (m *GetGatewayResponse) GetCreatedAt() string

func (*GetGatewayResponse) GetDescription

func (m *GetGatewayResponse) GetDescription() string

func (*GetGatewayResponse) GetFirstSeenAt

func (m *GetGatewayResponse) GetFirstSeenAt() string

func (*GetGatewayResponse) GetGatewayProfileID

func (m *GetGatewayResponse) GetGatewayProfileID() string

func (*GetGatewayResponse) GetLastSeenAt

func (m *GetGatewayResponse) GetLastSeenAt() string

func (*GetGatewayResponse) GetLatitude

func (m *GetGatewayResponse) GetLatitude() float64

func (*GetGatewayResponse) GetLongitude

func (m *GetGatewayResponse) GetLongitude() float64

func (*GetGatewayResponse) GetMac

func (m *GetGatewayResponse) GetMac() []byte

func (*GetGatewayResponse) GetName

func (m *GetGatewayResponse) GetName() string

func (*GetGatewayResponse) GetUpdatedAt

func (m *GetGatewayResponse) GetUpdatedAt() string

func (*GetGatewayResponse) ProtoMessage

func (*GetGatewayResponse) ProtoMessage()

func (*GetGatewayResponse) Reset

func (m *GetGatewayResponse) Reset()

func (*GetGatewayResponse) String

func (m *GetGatewayResponse) String() string

func (*GetGatewayResponse) XXX_DiscardUnknown

func (m *GetGatewayResponse) XXX_DiscardUnknown()

func (*GetGatewayResponse) XXX_Marshal

func (m *GetGatewayResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetGatewayResponse) XXX_Merge

func (dst *GetGatewayResponse) XXX_Merge(src proto.Message)

func (*GetGatewayResponse) XXX_Size

func (m *GetGatewayResponse) XXX_Size() int

func (*GetGatewayResponse) XXX_Unmarshal

func (m *GetGatewayResponse) XXX_Unmarshal(b []byte) error

type GetGatewayStatsRequest

type GetGatewayStatsRequest struct {
	// MAC address of the gateway.
	Mac []byte `protobuf:"bytes,1,opt,name=mac,proto3" json:"mac,omitempty"`
	// Aggregation interval.
	Interval AggregationInterval `protobuf:"varint,2,opt,name=interval,enum=ns.AggregationInterval" json:"interval,omitempty"`
	// Timestamp to start from.
	StartTimestamp string `protobuf:"bytes,3,opt,name=startTimestamp" json:"startTimestamp,omitempty"`
	// Timestamp until to get from.
	EndTimestamp         string   `protobuf:"bytes,4,opt,name=endTimestamp" json:"endTimestamp,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*GetGatewayStatsRequest) Descriptor

func (*GetGatewayStatsRequest) Descriptor() ([]byte, []int)

func (*GetGatewayStatsRequest) GetEndTimestamp

func (m *GetGatewayStatsRequest) GetEndTimestamp() string

func (*GetGatewayStatsRequest) GetInterval

func (*GetGatewayStatsRequest) GetMac

func (m *GetGatewayStatsRequest) GetMac() []byte

func (*GetGatewayStatsRequest) GetStartTimestamp

func (m *GetGatewayStatsRequest) GetStartTimestamp() string

func (*GetGatewayStatsRequest) ProtoMessage

func (*GetGatewayStatsRequest) ProtoMessage()

func (*GetGatewayStatsRequest) Reset

func (m *GetGatewayStatsRequest) Reset()

func (*GetGatewayStatsRequest) String

func (m *GetGatewayStatsRequest) String() string

func (*GetGatewayStatsRequest) XXX_DiscardUnknown

func (m *GetGatewayStatsRequest) XXX_DiscardUnknown()

func (*GetGatewayStatsRequest) XXX_Marshal

func (m *GetGatewayStatsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetGatewayStatsRequest) XXX_Merge

func (dst *GetGatewayStatsRequest) XXX_Merge(src proto.Message)

func (*GetGatewayStatsRequest) XXX_Size

func (m *GetGatewayStatsRequest) XXX_Size() int

func (*GetGatewayStatsRequest) XXX_Unmarshal

func (m *GetGatewayStatsRequest) XXX_Unmarshal(b []byte) error

type GetGatewayStatsResponse

type GetGatewayStatsResponse struct {
	Result               []*GatewayStats `protobuf:"bytes,1,rep,name=result" json:"result,omitempty"`
	XXX_NoUnkeyedLiteral struct{}        `json:"-"`
	XXX_unrecognized     []byte          `json:"-"`
	XXX_sizecache        int32           `json:"-"`
}

func (*GetGatewayStatsResponse) Descriptor

func (*GetGatewayStatsResponse) Descriptor() ([]byte, []int)

func (*GetGatewayStatsResponse) GetResult

func (m *GetGatewayStatsResponse) GetResult() []*GatewayStats

func (*GetGatewayStatsResponse) ProtoMessage

func (*GetGatewayStatsResponse) ProtoMessage()

func (*GetGatewayStatsResponse) Reset

func (m *GetGatewayStatsResponse) Reset()

func (*GetGatewayStatsResponse) String

func (m *GetGatewayStatsResponse) String() string

func (*GetGatewayStatsResponse) XXX_DiscardUnknown

func (m *GetGatewayStatsResponse) XXX_DiscardUnknown()

func (*GetGatewayStatsResponse) XXX_Marshal

func (m *GetGatewayStatsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetGatewayStatsResponse) XXX_Merge

func (dst *GetGatewayStatsResponse) XXX_Merge(src proto.Message)

func (*GetGatewayStatsResponse) XXX_Size

func (m *GetGatewayStatsResponse) XXX_Size() int

func (*GetGatewayStatsResponse) XXX_Unmarshal

func (m *GetGatewayStatsResponse) XXX_Unmarshal(b []byte) error

type GetNextDownlinkFCntForDevEUIRequest

type GetNextDownlinkFCntForDevEUIRequest struct {
	// DevEUI of the device.
	DevEUI               []byte   `protobuf:"bytes,1,opt,name=devEUI,proto3" json:"devEUI,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*GetNextDownlinkFCntForDevEUIRequest) Descriptor

func (*GetNextDownlinkFCntForDevEUIRequest) Descriptor() ([]byte, []int)

func (*GetNextDownlinkFCntForDevEUIRequest) GetDevEUI

func (m *GetNextDownlinkFCntForDevEUIRequest) GetDevEUI() []byte

func (*GetNextDownlinkFCntForDevEUIRequest) ProtoMessage

func (*GetNextDownlinkFCntForDevEUIRequest) ProtoMessage()

func (*GetNextDownlinkFCntForDevEUIRequest) Reset

func (*GetNextDownlinkFCntForDevEUIRequest) String

func (*GetNextDownlinkFCntForDevEUIRequest) XXX_DiscardUnknown

func (m *GetNextDownlinkFCntForDevEUIRequest) XXX_DiscardUnknown()

func (*GetNextDownlinkFCntForDevEUIRequest) XXX_Marshal

func (m *GetNextDownlinkFCntForDevEUIRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetNextDownlinkFCntForDevEUIRequest) XXX_Merge

func (*GetNextDownlinkFCntForDevEUIRequest) XXX_Size

func (*GetNextDownlinkFCntForDevEUIRequest) XXX_Unmarshal

func (m *GetNextDownlinkFCntForDevEUIRequest) XXX_Unmarshal(b []byte) error

type GetNextDownlinkFCntForDevEUIResponse

type GetNextDownlinkFCntForDevEUIResponse struct {
	// The frame-counter to use.
	FCnt                 uint32   `protobuf:"varint,1,opt,name=fCnt" json:"fCnt,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*GetNextDownlinkFCntForDevEUIResponse) Descriptor

func (*GetNextDownlinkFCntForDevEUIResponse) Descriptor() ([]byte, []int)

func (*GetNextDownlinkFCntForDevEUIResponse) GetFCnt

func (*GetNextDownlinkFCntForDevEUIResponse) ProtoMessage

func (*GetNextDownlinkFCntForDevEUIResponse) ProtoMessage()

func (*GetNextDownlinkFCntForDevEUIResponse) Reset

func (*GetNextDownlinkFCntForDevEUIResponse) String

func (*GetNextDownlinkFCntForDevEUIResponse) XXX_DiscardUnknown

func (m *GetNextDownlinkFCntForDevEUIResponse) XXX_DiscardUnknown()

func (*GetNextDownlinkFCntForDevEUIResponse) XXX_Marshal

func (m *GetNextDownlinkFCntForDevEUIResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetNextDownlinkFCntForDevEUIResponse) XXX_Merge

func (*GetNextDownlinkFCntForDevEUIResponse) XXX_Size

func (*GetNextDownlinkFCntForDevEUIResponse) XXX_Unmarshal

func (m *GetNextDownlinkFCntForDevEUIResponse) XXX_Unmarshal(b []byte) error

type GetRandomDevAddrRequest

type GetRandomDevAddrRequest struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*GetRandomDevAddrRequest) Descriptor

func (*GetRandomDevAddrRequest) Descriptor() ([]byte, []int)

func (*GetRandomDevAddrRequest) ProtoMessage

func (*GetRandomDevAddrRequest) ProtoMessage()

func (*GetRandomDevAddrRequest) Reset

func (m *GetRandomDevAddrRequest) Reset()

func (*GetRandomDevAddrRequest) String

func (m *GetRandomDevAddrRequest) String() string

func (*GetRandomDevAddrRequest) XXX_DiscardUnknown

func (m *GetRandomDevAddrRequest) XXX_DiscardUnknown()

func (*GetRandomDevAddrRequest) XXX_Marshal

func (m *GetRandomDevAddrRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetRandomDevAddrRequest) XXX_Merge

func (dst *GetRandomDevAddrRequest) XXX_Merge(src proto.Message)

func (*GetRandomDevAddrRequest) XXX_Size

func (m *GetRandomDevAddrRequest) XXX_Size() int

func (*GetRandomDevAddrRequest) XXX_Unmarshal

func (m *GetRandomDevAddrRequest) XXX_Unmarshal(b []byte) error

type GetRandomDevAddrResponse

type GetRandomDevAddrResponse struct {
	DevAddr              []byte   `protobuf:"bytes,1,opt,name=devAddr,proto3" json:"devAddr,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*GetRandomDevAddrResponse) Descriptor

func (*GetRandomDevAddrResponse) Descriptor() ([]byte, []int)

func (*GetRandomDevAddrResponse) GetDevAddr

func (m *GetRandomDevAddrResponse) GetDevAddr() []byte

func (*GetRandomDevAddrResponse) ProtoMessage

func (*GetRandomDevAddrResponse) ProtoMessage()

func (*GetRandomDevAddrResponse) Reset

func (m *GetRandomDevAddrResponse) Reset()

func (*GetRandomDevAddrResponse) String

func (m *GetRandomDevAddrResponse) String() string

func (*GetRandomDevAddrResponse) XXX_DiscardUnknown

func (m *GetRandomDevAddrResponse) XXX_DiscardUnknown()

func (*GetRandomDevAddrResponse) XXX_Marshal

func (m *GetRandomDevAddrResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetRandomDevAddrResponse) XXX_Merge

func (dst *GetRandomDevAddrResponse) XXX_Merge(src proto.Message)

func (*GetRandomDevAddrResponse) XXX_Size

func (m *GetRandomDevAddrResponse) XXX_Size() int

func (*GetRandomDevAddrResponse) XXX_Unmarshal

func (m *GetRandomDevAddrResponse) XXX_Unmarshal(b []byte) error

type GetRoutingProfileRequest

type GetRoutingProfileRequest struct {
	RoutingProfileID     string   `protobuf:"bytes,1,opt,name=routingProfileID" json:"routingProfileID,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*GetRoutingProfileRequest) Descriptor

func (*GetRoutingProfileRequest) Descriptor() ([]byte, []int)

func (*GetRoutingProfileRequest) GetRoutingProfileID

func (m *GetRoutingProfileRequest) GetRoutingProfileID() string

func (*GetRoutingProfileRequest) ProtoMessage

func (*GetRoutingProfileRequest) ProtoMessage()

func (*GetRoutingProfileRequest) Reset

func (m *GetRoutingProfileRequest) Reset()

func (*GetRoutingProfileRequest) String

func (m *GetRoutingProfileRequest) String() string

func (*GetRoutingProfileRequest) XXX_DiscardUnknown

func (m *GetRoutingProfileRequest) XXX_DiscardUnknown()

func (*GetRoutingProfileRequest) XXX_Marshal

func (m *GetRoutingProfileRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetRoutingProfileRequest) XXX_Merge

func (dst *GetRoutingProfileRequest) XXX_Merge(src proto.Message)

func (*GetRoutingProfileRequest) XXX_Size

func (m *GetRoutingProfileRequest) XXX_Size() int

func (*GetRoutingProfileRequest) XXX_Unmarshal

func (m *GetRoutingProfileRequest) XXX_Unmarshal(b []byte) error

type GetRoutingProfileResponse

type GetRoutingProfileResponse struct {
	RoutingProfile *RoutingProfile `protobuf:"bytes,1,opt,name=routingProfile" json:"routingProfile,omitempty"`
	CreatedAt      string          `protobuf:"bytes,2,opt,name=createdAt" json:"createdAt,omitempty"`
	UpdatedAt      string          `protobuf:"bytes,3,opt,name=updatedAt" json:"updatedAt,omitempty"`
	// ca certificate for connecting to lora-app-server
	CaCert string `protobuf:"bytes,4,opt,name=caCert" json:"caCert,omitempty"`
	// tls certificate for connecting to lora-app-server
	TlsCert              string   `protobuf:"bytes,5,opt,name=tlsCert" json:"tlsCert,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*GetRoutingProfileResponse) Descriptor

func (*GetRoutingProfileResponse) Descriptor() ([]byte, []int)

func (*GetRoutingProfileResponse) GetCaCert

func (m *GetRoutingProfileResponse) GetCaCert() string

func (*GetRoutingProfileResponse) GetCreatedAt

func (m *GetRoutingProfileResponse) GetCreatedAt() string

func (*GetRoutingProfileResponse) GetRoutingProfile

func (m *GetRoutingProfileResponse) GetRoutingProfile() *RoutingProfile

func (*GetRoutingProfileResponse) GetTlsCert

func (m *GetRoutingProfileResponse) GetTlsCert() string

func (*GetRoutingProfileResponse) GetUpdatedAt

func (m *GetRoutingProfileResponse) GetUpdatedAt() string

func (*GetRoutingProfileResponse) ProtoMessage

func (*GetRoutingProfileResponse) ProtoMessage()

func (*GetRoutingProfileResponse) Reset

func (m *GetRoutingProfileResponse) Reset()

func (*GetRoutingProfileResponse) String

func (m *GetRoutingProfileResponse) String() string

func (*GetRoutingProfileResponse) XXX_DiscardUnknown

func (m *GetRoutingProfileResponse) XXX_DiscardUnknown()

func (*GetRoutingProfileResponse) XXX_Marshal

func (m *GetRoutingProfileResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetRoutingProfileResponse) XXX_Merge

func (dst *GetRoutingProfileResponse) XXX_Merge(src proto.Message)

func (*GetRoutingProfileResponse) XXX_Size

func (m *GetRoutingProfileResponse) XXX_Size() int

func (*GetRoutingProfileResponse) XXX_Unmarshal

func (m *GetRoutingProfileResponse) XXX_Unmarshal(b []byte) error

type GetServiceProfileRequest

type GetServiceProfileRequest struct {
	ServiceProfileID     string   `protobuf:"bytes,1,opt,name=serviceProfileID" json:"serviceProfileID,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*GetServiceProfileRequest) Descriptor

func (*GetServiceProfileRequest) Descriptor() ([]byte, []int)

func (*GetServiceProfileRequest) GetServiceProfileID

func (m *GetServiceProfileRequest) GetServiceProfileID() string

func (*GetServiceProfileRequest) ProtoMessage

func (*GetServiceProfileRequest) ProtoMessage()

func (*GetServiceProfileRequest) Reset

func (m *GetServiceProfileRequest) Reset()

func (*GetServiceProfileRequest) String

func (m *GetServiceProfileRequest) String() string

func (*GetServiceProfileRequest) XXX_DiscardUnknown

func (m *GetServiceProfileRequest) XXX_DiscardUnknown()

func (*GetServiceProfileRequest) XXX_Marshal

func (m *GetServiceProfileRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetServiceProfileRequest) XXX_Merge

func (dst *GetServiceProfileRequest) XXX_Merge(src proto.Message)

func (*GetServiceProfileRequest) XXX_Size

func (m *GetServiceProfileRequest) XXX_Size() int

func (*GetServiceProfileRequest) XXX_Unmarshal

func (m *GetServiceProfileRequest) XXX_Unmarshal(b []byte) error

type GetServiceProfileResponse

type GetServiceProfileResponse struct {
	ServiceProfile       *ServiceProfile `protobuf:"bytes,1,opt,name=serviceProfile" json:"serviceProfile,omitempty"`
	CreatedAt            string          `protobuf:"bytes,2,opt,name=createdAt" json:"createdAt,omitempty"`
	UpdatedAt            string          `protobuf:"bytes,3,opt,name=updatedAt" json:"updatedAt,omitempty"`
	XXX_NoUnkeyedLiteral struct{}        `json:"-"`
	XXX_unrecognized     []byte          `json:"-"`
	XXX_sizecache        int32           `json:"-"`
}

func (*GetServiceProfileResponse) Descriptor

func (*GetServiceProfileResponse) Descriptor() ([]byte, []int)

func (*GetServiceProfileResponse) GetCreatedAt

func (m *GetServiceProfileResponse) GetCreatedAt() string

func (*GetServiceProfileResponse) GetServiceProfile

func (m *GetServiceProfileResponse) GetServiceProfile() *ServiceProfile

func (*GetServiceProfileResponse) GetUpdatedAt

func (m *GetServiceProfileResponse) GetUpdatedAt() string

func (*GetServiceProfileResponse) ProtoMessage

func (*GetServiceProfileResponse) ProtoMessage()

func (*GetServiceProfileResponse) Reset

func (m *GetServiceProfileResponse) Reset()

func (*GetServiceProfileResponse) String

func (m *GetServiceProfileResponse) String() string

func (*GetServiceProfileResponse) XXX_DiscardUnknown

func (m *GetServiceProfileResponse) XXX_DiscardUnknown()

func (*GetServiceProfileResponse) XXX_Marshal

func (m *GetServiceProfileResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetServiceProfileResponse) XXX_Merge

func (dst *GetServiceProfileResponse) XXX_Merge(src proto.Message)

func (*GetServiceProfileResponse) XXX_Size

func (m *GetServiceProfileResponse) XXX_Size() int

func (*GetServiceProfileResponse) XXX_Unmarshal

func (m *GetServiceProfileResponse) XXX_Unmarshal(b []byte) error

type GetVersionRequest

type GetVersionRequest struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*GetVersionRequest) Descriptor

func (*GetVersionRequest) Descriptor() ([]byte, []int)

func (*GetVersionRequest) ProtoMessage

func (*GetVersionRequest) ProtoMessage()

func (*GetVersionRequest) Reset

func (m *GetVersionRequest) Reset()

func (*GetVersionRequest) String

func (m *GetVersionRequest) String() string

func (*GetVersionRequest) XXX_DiscardUnknown

func (m *GetVersionRequest) XXX_DiscardUnknown()

func (*GetVersionRequest) XXX_Marshal

func (m *GetVersionRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetVersionRequest) XXX_Merge

func (dst *GetVersionRequest) XXX_Merge(src proto.Message)

func (*GetVersionRequest) XXX_Size

func (m *GetVersionRequest) XXX_Size() int

func (*GetVersionRequest) XXX_Unmarshal

func (m *GetVersionRequest) XXX_Unmarshal(b []byte) error

type GetVersionResponse

type GetVersionResponse struct {
	// LoRa Server version.
	Version string `protobuf:"bytes,1,opt,name=version" json:"version,omitempty"`
	// Region configured for this network-server.
	Region               Region   `protobuf:"varint,2,opt,name=region,enum=ns.Region" json:"region,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*GetVersionResponse) Descriptor

func (*GetVersionResponse) Descriptor() ([]byte, []int)

func (*GetVersionResponse) GetRegion

func (m *GetVersionResponse) GetRegion() Region

func (*GetVersionResponse) GetVersion

func (m *GetVersionResponse) GetVersion() string

func (*GetVersionResponse) ProtoMessage

func (*GetVersionResponse) ProtoMessage()

func (*GetVersionResponse) Reset

func (m *GetVersionResponse) Reset()

func (*GetVersionResponse) String

func (m *GetVersionResponse) String() string

func (*GetVersionResponse) XXX_DiscardUnknown

func (m *GetVersionResponse) XXX_DiscardUnknown()

func (*GetVersionResponse) XXX_Marshal

func (m *GetVersionResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetVersionResponse) XXX_Merge

func (dst *GetVersionResponse) XXX_Merge(src proto.Message)

func (*GetVersionResponse) XXX_Size

func (m *GetVersionResponse) XXX_Size() int

func (*GetVersionResponse) XXX_Unmarshal

func (m *GetVersionResponse) XXX_Unmarshal(b []byte) error

type Modulation

type Modulation int32
const (
	// LoRa
	Modulation_LORA Modulation = 0
	// FSK
	Modulation_FSK Modulation = 1
)

func (Modulation) EnumDescriptor

func (Modulation) EnumDescriptor() ([]byte, []int)

func (Modulation) String

func (x Modulation) String() string

type NetworkServerClient

type NetworkServerClient interface {
	// CreateServiceProfile creates the given service-profile.
	CreateServiceProfile(ctx context.Context, in *CreateServiceProfileRequest, opts ...grpc.CallOption) (*CreateServiceProfileResponse, error)
	// GetServiceProfile returns the service-profile matching the given id.
	GetServiceProfile(ctx context.Context, in *GetServiceProfileRequest, opts ...grpc.CallOption) (*GetServiceProfileResponse, error)
	// UpdateServiceProfile updates the given service-profile.
	UpdateServiceProfile(ctx context.Context, in *UpdateServiceProfileRequest, opts ...grpc.CallOption) (*UpdateServiceProfileResponse, error)
	// DeleteServiceProfile deletes the service-profile matching the given id.
	DeleteServiceProfile(ctx context.Context, in *DeleteServiceProfileRequest, opts ...grpc.CallOption) (*DeleteServiceProfileResponse, error)
	// CreateRoutingProfile creates the given routing-profile.
	CreateRoutingProfile(ctx context.Context, in *CreateRoutingProfileRequest, opts ...grpc.CallOption) (*CreateRoutingProfileResponse, error)
	// GetRoutingProfile returns the routing-profile matching the given id.
	GetRoutingProfile(ctx context.Context, in *GetRoutingProfileRequest, opts ...grpc.CallOption) (*GetRoutingProfileResponse, error)
	// UpdateRoutingProfile updates the given routing-profile.
	UpdateRoutingProfile(ctx context.Context, in *UpdateRoutingProfileRequest, opts ...grpc.CallOption) (*UpdateRoutingProfileResponse, error)
	// DeleteRoutingProfile deletes the routing-profile matching the given id.
	DeleteRoutingProfile(ctx context.Context, in *DeleteRoutingProfileRequest, opts ...grpc.CallOption) (*DeleteRoutingProfileResponse, error)
	// CreateDeviceProfile creates the given device-profile.
	CreateDeviceProfile(ctx context.Context, in *CreateDeviceProfileRequest, opts ...grpc.CallOption) (*CreateDeviceProfileResponse, error)
	// GetDeviceProfile returns the device-profile matching the given id.
	GetDeviceProfile(ctx context.Context, in *GetDeviceProfileRequest, opts ...grpc.CallOption) (*GetDeviceProfileResponse, error)
	// UpdateDeviceProfile updates the given device-profile.
	UpdateDeviceProfile(ctx context.Context, in *UpdateDeviceProfileRequest, opts ...grpc.CallOption) (*UpdateDeviceProfileResponse, error)
	// DeleteDeviceProfile deletes the device-profile matching the given id.
	DeleteDeviceProfile(ctx context.Context, in *DeleteDeviceProfileRequest, opts ...grpc.CallOption) (*DeleteDeviceProfileResponse, error)
	// CreateDevice creates the given device.
	CreateDevice(ctx context.Context, in *CreateDeviceRequest, opts ...grpc.CallOption) (*CreateDeviceResponse, error)
	// GetDevice returns the device matching the given DevEUI.
	GetDevice(ctx context.Context, in *GetDeviceRequest, opts ...grpc.CallOption) (*GetDeviceResponse, error)
	// UpdateDevice updates the given device.
	UpdateDevice(ctx context.Context, in *UpdateDeviceRequest, opts ...grpc.CallOption) (*UpdateDeviceResponse, error)
	// DeleteDevice deletes the device matching the given DevEUI.
	DeleteDevice(ctx context.Context, in *DeleteDeviceRequest, opts ...grpc.CallOption) (*DeleteDeviceResponse, error)
	// ActivateDevice activates a device (ABP).
	ActivateDevice(ctx context.Context, in *ActivateDeviceRequest, opts ...grpc.CallOption) (*ActivateDeviceResponse, error)
	// DeactivateDevice de-activates a device.
	DeactivateDevice(ctx context.Context, in *DeactivateDeviceRequest, opts ...grpc.CallOption) (*DeactivateDeviceResponse, error)
	// GetDeviceActivation returns the device activation details.
	GetDeviceActivation(ctx context.Context, in *GetDeviceActivationRequest, opts ...grpc.CallOption) (*GetDeviceActivationResponse, error)
	// CreateDeviceQueueItem creates the given device-queue item.
	CreateDeviceQueueItem(ctx context.Context, in *CreateDeviceQueueItemRequest, opts ...grpc.CallOption) (*CreateDeviceQueueItemResponse, error)
	// FlushDeviceQueueForDevEUI flushes the device-queue for the given DevEUI.
	FlushDeviceQueueForDevEUI(ctx context.Context, in *FlushDeviceQueueForDevEUIRequest, opts ...grpc.CallOption) (*FlushDeviceQueueForDevEUIResponse, error)
	// GetDeviceQueueItemsForDevEUI returns all device-queue items for the given DevEUI.
	GetDeviceQueueItemsForDevEUI(ctx context.Context, in *GetDeviceQueueItemsForDevEUIRequest, opts ...grpc.CallOption) (*GetDeviceQueueItemsForDevEUIResponse, error)
	// GetNextDownlinkFCntForDevEUI returns the next FCnt that must be used.
	// This also takes device-queue items for the given DevEUI into consideration.
	GetNextDownlinkFCntForDevEUI(ctx context.Context, in *GetNextDownlinkFCntForDevEUIRequest, opts ...grpc.CallOption) (*GetNextDownlinkFCntForDevEUIResponse, error)
	// GetRandomDevAddr returns a random DevAddr taking the NwkID prefix into account.
	GetRandomDevAddr(ctx context.Context, in *GetRandomDevAddrRequest, opts ...grpc.CallOption) (*GetRandomDevAddrResponse, error)
	// CreateMACCommandQueueItem adds the downlink mac-command to the queue.
	CreateMACCommandQueueItem(ctx context.Context, in *CreateMACCommandQueueItemRequest, opts ...grpc.CallOption) (*CreateMACCommandQueueItemResponse, error)
	// SendProprietaryPayload send a payload using the 'Proprietary' LoRaWAN message-type.
	SendProprietaryPayload(ctx context.Context, in *SendProprietaryPayloadRequest, opts ...grpc.CallOption) (*SendProprietaryPayloadResponse, error)
	// CreateGateway creates the given gateway.
	CreateGateway(ctx context.Context, in *CreateGatewayRequest, opts ...grpc.CallOption) (*CreateGatewayResponse, error)
	// GetGateway returns data for a particular gateway.
	GetGateway(ctx context.Context, in *GetGatewayRequest, opts ...grpc.CallOption) (*GetGatewayResponse, error)
	// UpdateGateway updates an existing gateway.
	UpdateGateway(ctx context.Context, in *UpdateGatewayRequest, opts ...grpc.CallOption) (*UpdateGatewayResponse, error)
	// DeleteGateway deletes a gateway.
	DeleteGateway(ctx context.Context, in *DeleteGatewayRequest, opts ...grpc.CallOption) (*DeleteGatewayResponse, error)
	// CreateGatewayProfile creates the given gateway-profile.
	CreateGatewayProfile(ctx context.Context, in *CreateGatewayProfileRequest, opts ...grpc.CallOption) (*CreateGatewayProfileResponse, error)
	// GetGatewayProfile returns the gateway-profile given an id.
	GetGatewayProfile(ctx context.Context, in *GetGatewayProfileRequest, opts ...grpc.CallOption) (*GetGatewayProfileResponse, error)
	// UpdateGatewayProfile updates the given gateway-profile.
	UpdateGatewayProfile(ctx context.Context, in *UpdateGatewayProfileRequest, opts ...grpc.CallOption) (*UpdateGatewayProfileResponse, error)
	// DeleteGatewayProfile deletes the gateway-profile matching a given id.
	DeleteGatewayProfile(ctx context.Context, in *DeleteGatewayProfileRequest, opts ...grpc.CallOption) (*DeleteGatewayProfileResponse, error)
	// GetGatewayStats returns stats of an existing gateway.
	GetGatewayStats(ctx context.Context, in *GetGatewayStatsRequest, opts ...grpc.CallOption) (*GetGatewayStatsResponse, error)
	// StreamFrameLogsForGateway returns a stream of frames seen by the given gateway.
	StreamFrameLogsForGateway(ctx context.Context, in *StreamFrameLogsForGatewayRequest, opts ...grpc.CallOption) (NetworkServer_StreamFrameLogsForGatewayClient, error)
	// StreamFrameLogsForDevice returns a stream of frames seen by the given device.
	StreamFrameLogsForDevice(ctx context.Context, in *StreamFrameLogsForDeviceRequest, opts ...grpc.CallOption) (NetworkServer_StreamFrameLogsForDeviceClient, error)
	// GetVersion returns the LoRa Server version.
	GetVersion(ctx context.Context, in *GetVersionRequest, opts ...grpc.CallOption) (*GetVersionResponse, error)
}

NetworkServerClient is the client API for NetworkServer service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

func NewNetworkServerClient

func NewNetworkServerClient(cc *grpc.ClientConn) NetworkServerClient

type NetworkServerServer

type NetworkServerServer interface {
	// CreateServiceProfile creates the given service-profile.
	CreateServiceProfile(context.Context, *CreateServiceProfileRequest) (*CreateServiceProfileResponse, error)
	// GetServiceProfile returns the service-profile matching the given id.
	GetServiceProfile(context.Context, *GetServiceProfileRequest) (*GetServiceProfileResponse, error)
	// UpdateServiceProfile updates the given service-profile.
	UpdateServiceProfile(context.Context, *UpdateServiceProfileRequest) (*UpdateServiceProfileResponse, error)
	// DeleteServiceProfile deletes the service-profile matching the given id.
	DeleteServiceProfile(context.Context, *DeleteServiceProfileRequest) (*DeleteServiceProfileResponse, error)
	// CreateRoutingProfile creates the given routing-profile.
	CreateRoutingProfile(context.Context, *CreateRoutingProfileRequest) (*CreateRoutingProfileResponse, error)
	// GetRoutingProfile returns the routing-profile matching the given id.
	GetRoutingProfile(context.Context, *GetRoutingProfileRequest) (*GetRoutingProfileResponse, error)
	// UpdateRoutingProfile updates the given routing-profile.
	UpdateRoutingProfile(context.Context, *UpdateRoutingProfileRequest) (*UpdateRoutingProfileResponse, error)
	// DeleteRoutingProfile deletes the routing-profile matching the given id.
	DeleteRoutingProfile(context.Context, *DeleteRoutingProfileRequest) (*DeleteRoutingProfileResponse, error)
	// CreateDeviceProfile creates the given device-profile.
	CreateDeviceProfile(context.Context, *CreateDeviceProfileRequest) (*CreateDeviceProfileResponse, error)
	// GetDeviceProfile returns the device-profile matching the given id.
	GetDeviceProfile(context.Context, *GetDeviceProfileRequest) (*GetDeviceProfileResponse, error)
	// UpdateDeviceProfile updates the given device-profile.
	UpdateDeviceProfile(context.Context, *UpdateDeviceProfileRequest) (*UpdateDeviceProfileResponse, error)
	// DeleteDeviceProfile deletes the device-profile matching the given id.
	DeleteDeviceProfile(context.Context, *DeleteDeviceProfileRequest) (*DeleteDeviceProfileResponse, error)
	// CreateDevice creates the given device.
	CreateDevice(context.Context, *CreateDeviceRequest) (*CreateDeviceResponse, error)
	// GetDevice returns the device matching the given DevEUI.
	GetDevice(context.Context, *GetDeviceRequest) (*GetDeviceResponse, error)
	// UpdateDevice updates the given device.
	UpdateDevice(context.Context, *UpdateDeviceRequest) (*UpdateDeviceResponse, error)
	// DeleteDevice deletes the device matching the given DevEUI.
	DeleteDevice(context.Context, *DeleteDeviceRequest) (*DeleteDeviceResponse, error)
	// ActivateDevice activates a device (ABP).
	ActivateDevice(context.Context, *ActivateDeviceRequest) (*ActivateDeviceResponse, error)
	// DeactivateDevice de-activates a device.
	DeactivateDevice(context.Context, *DeactivateDeviceRequest) (*DeactivateDeviceResponse, error)
	// GetDeviceActivation returns the device activation details.
	GetDeviceActivation(context.Context, *GetDeviceActivationRequest) (*GetDeviceActivationResponse, error)
	// CreateDeviceQueueItem creates the given device-queue item.
	CreateDeviceQueueItem(context.Context, *CreateDeviceQueueItemRequest) (*CreateDeviceQueueItemResponse, error)
	// FlushDeviceQueueForDevEUI flushes the device-queue for the given DevEUI.
	FlushDeviceQueueForDevEUI(context.Context, *FlushDeviceQueueForDevEUIRequest) (*FlushDeviceQueueForDevEUIResponse, error)
	// GetDeviceQueueItemsForDevEUI returns all device-queue items for the given DevEUI.
	GetDeviceQueueItemsForDevEUI(context.Context, *GetDeviceQueueItemsForDevEUIRequest) (*GetDeviceQueueItemsForDevEUIResponse, error)
	// GetNextDownlinkFCntForDevEUI returns the next FCnt that must be used.
	// This also takes device-queue items for the given DevEUI into consideration.
	GetNextDownlinkFCntForDevEUI(context.Context, *GetNextDownlinkFCntForDevEUIRequest) (*GetNextDownlinkFCntForDevEUIResponse, error)
	// GetRandomDevAddr returns a random DevAddr taking the NwkID prefix into account.
	GetRandomDevAddr(context.Context, *GetRandomDevAddrRequest) (*GetRandomDevAddrResponse, error)
	// CreateMACCommandQueueItem adds the downlink mac-command to the queue.
	CreateMACCommandQueueItem(context.Context, *CreateMACCommandQueueItemRequest) (*CreateMACCommandQueueItemResponse, error)
	// SendProprietaryPayload send a payload using the 'Proprietary' LoRaWAN message-type.
	SendProprietaryPayload(context.Context, *SendProprietaryPayloadRequest) (*SendProprietaryPayloadResponse, error)
	// CreateGateway creates the given gateway.
	CreateGateway(context.Context, *CreateGatewayRequest) (*CreateGatewayResponse, error)
	// GetGateway returns data for a particular gateway.
	GetGateway(context.Context, *GetGatewayRequest) (*GetGatewayResponse, error)
	// UpdateGateway updates an existing gateway.
	UpdateGateway(context.Context, *UpdateGatewayRequest) (*UpdateGatewayResponse, error)
	// DeleteGateway deletes a gateway.
	DeleteGateway(context.Context, *DeleteGatewayRequest) (*DeleteGatewayResponse, error)
	// CreateGatewayProfile creates the given gateway-profile.
	CreateGatewayProfile(context.Context, *CreateGatewayProfileRequest) (*CreateGatewayProfileResponse, error)
	// GetGatewayProfile returns the gateway-profile given an id.
	GetGatewayProfile(context.Context, *GetGatewayProfileRequest) (*GetGatewayProfileResponse, error)
	// UpdateGatewayProfile updates the given gateway-profile.
	UpdateGatewayProfile(context.Context, *UpdateGatewayProfileRequest) (*UpdateGatewayProfileResponse, error)
	// DeleteGatewayProfile deletes the gateway-profile matching a given id.
	DeleteGatewayProfile(context.Context, *DeleteGatewayProfileRequest) (*DeleteGatewayProfileResponse, error)
	// GetGatewayStats returns stats of an existing gateway.
	GetGatewayStats(context.Context, *GetGatewayStatsRequest) (*GetGatewayStatsResponse, error)
	// StreamFrameLogsForGateway returns a stream of frames seen by the given gateway.
	StreamFrameLogsForGateway(*StreamFrameLogsForGatewayRequest, NetworkServer_StreamFrameLogsForGatewayServer) error
	// StreamFrameLogsForDevice returns a stream of frames seen by the given device.
	StreamFrameLogsForDevice(*StreamFrameLogsForDeviceRequest, NetworkServer_StreamFrameLogsForDeviceServer) error
	// GetVersion returns the LoRa Server version.
	GetVersion(context.Context, *GetVersionRequest) (*GetVersionResponse, error)
}

type NetworkServer_StreamFrameLogsForDeviceClient

type NetworkServer_StreamFrameLogsForDeviceClient interface {
	Recv() (*StreamFrameLogsForDeviceResponse, error)
	grpc.ClientStream
}

type NetworkServer_StreamFrameLogsForDeviceServer

type NetworkServer_StreamFrameLogsForDeviceServer interface {
	Send(*StreamFrameLogsForDeviceResponse) error
	grpc.ServerStream
}

type NetworkServer_StreamFrameLogsForGatewayClient

type NetworkServer_StreamFrameLogsForGatewayClient interface {
	Recv() (*StreamFrameLogsForGatewayResponse, error)
	grpc.ClientStream
}

type NetworkServer_StreamFrameLogsForGatewayServer

type NetworkServer_StreamFrameLogsForGatewayServer interface {
	Send(*StreamFrameLogsForGatewayResponse) error
	grpc.ServerStream
}

type RXWindow

type RXWindow int32
const (
	// Receive window 1
	RXWindow_RX1 RXWindow = 0
	// Receive window 2
	RXWindow_RX2 RXWindow = 1
)

func (RXWindow) EnumDescriptor

func (RXWindow) EnumDescriptor() ([]byte, []int)

func (RXWindow) String

func (x RXWindow) String() string

type RatePolicy

type RatePolicy int32
const (
	// Drop
	RatePolicy_DROP RatePolicy = 0
	// Mark
	RatePolicy_MARK RatePolicy = 1
)

func (RatePolicy) EnumDescriptor

func (RatePolicy) EnumDescriptor() ([]byte, []int)

func (RatePolicy) String

func (x RatePolicy) String() string

type Region

type Region int32
const (
	// EU868
	Region_EU868 Region = 0
	// US915
	Region_US915 Region = 2
	// CN779
	Region_CN779 Region = 3
	// EU433
	Region_EU433 Region = 4
	// AU915
	Region_AU915 Region = 5
	// CN470
	Region_CN470 Region = 6
	// AS923
	Region_AS923 Region = 7
	// KR920
	Region_KR920 Region = 8
	// IN865
	Region_IN865 Region = 9
	// RU864
	Region_RU864 Region = 10
)

func (Region) EnumDescriptor

func (Region) EnumDescriptor() ([]byte, []int)

func (Region) String

func (x Region) String() string

type RoutingProfile

type RoutingProfile struct {
	RoutingProfileID     string   `protobuf:"bytes,1,opt,name=routingProfileID" json:"routingProfileID,omitempty"`
	AsID                 string   `protobuf:"bytes,2,opt,name=asID" json:"asID,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*RoutingProfile) Descriptor

func (*RoutingProfile) Descriptor() ([]byte, []int)

func (*RoutingProfile) GetAsID

func (m *RoutingProfile) GetAsID() string

func (*RoutingProfile) GetRoutingProfileID

func (m *RoutingProfile) GetRoutingProfileID() string

func (*RoutingProfile) ProtoMessage

func (*RoutingProfile) ProtoMessage()

func (*RoutingProfile) Reset

func (m *RoutingProfile) Reset()

func (*RoutingProfile) String

func (m *RoutingProfile) String() string

func (*RoutingProfile) XXX_DiscardUnknown

func (m *RoutingProfile) XXX_DiscardUnknown()

func (*RoutingProfile) XXX_Marshal

func (m *RoutingProfile) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RoutingProfile) XXX_Merge

func (dst *RoutingProfile) XXX_Merge(src proto.Message)

func (*RoutingProfile) XXX_Size

func (m *RoutingProfile) XXX_Size() int

func (*RoutingProfile) XXX_Unmarshal

func (m *RoutingProfile) XXX_Unmarshal(b []byte) error

type SendProprietaryPayloadRequest

type SendProprietaryPayloadRequest struct {
	// MACPayload of the proprietary LoRaWAN frame.
	MacPayload []byte `protobuf:"bytes,1,opt,name=macPayload,proto3" json:"macPayload,omitempty"`
	// MIC of the proprietary LoRaWAN frame (must be 4 bytes).
	Mic []byte `protobuf:"bytes,2,opt,name=mic,proto3" json:"mic,omitempty"`
	// Gateway MAC address(es) to use for transmitting the LoRaWAN frame.
	GatewayMACs [][]byte `protobuf:"bytes,3,rep,name=gatewayMACs,proto3" json:"gatewayMACs,omitempty"`
	// Set to true for sending as a gateway, or false for sending as a node.
	// In the latter case the frame will be received by other gateways.
	IPol bool `protobuf:"varint,4,opt,name=iPol" json:"iPol,omitempty"`
	// Frequency (Hz) to use for the transmission.
	Frequency uint32 `protobuf:"varint,5,opt,name=frequency" json:"frequency,omitempty"`
	// Data-rate to use for the transmission.
	Dr                   uint32   `protobuf:"varint,6,opt,name=dr" json:"dr,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*SendProprietaryPayloadRequest) Descriptor

func (*SendProprietaryPayloadRequest) Descriptor() ([]byte, []int)

func (*SendProprietaryPayloadRequest) GetDr

func (*SendProprietaryPayloadRequest) GetFrequency

func (m *SendProprietaryPayloadRequest) GetFrequency() uint32

func (*SendProprietaryPayloadRequest) GetGatewayMACs

func (m *SendProprietaryPayloadRequest) GetGatewayMACs() [][]byte

func (*SendProprietaryPayloadRequest) GetIPol

func (m *SendProprietaryPayloadRequest) GetIPol() bool

func (*SendProprietaryPayloadRequest) GetMacPayload

func (m *SendProprietaryPayloadRequest) GetMacPayload() []byte

func (*SendProprietaryPayloadRequest) GetMic

func (m *SendProprietaryPayloadRequest) GetMic() []byte

func (*SendProprietaryPayloadRequest) ProtoMessage

func (*SendProprietaryPayloadRequest) ProtoMessage()

func (*SendProprietaryPayloadRequest) Reset

func (m *SendProprietaryPayloadRequest) Reset()

func (*SendProprietaryPayloadRequest) String

func (*SendProprietaryPayloadRequest) XXX_DiscardUnknown

func (m *SendProprietaryPayloadRequest) XXX_DiscardUnknown()

func (*SendProprietaryPayloadRequest) XXX_Marshal

func (m *SendProprietaryPayloadRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*SendProprietaryPayloadRequest) XXX_Merge

func (dst *SendProprietaryPayloadRequest) XXX_Merge(src proto.Message)

func (*SendProprietaryPayloadRequest) XXX_Size

func (m *SendProprietaryPayloadRequest) XXX_Size() int

func (*SendProprietaryPayloadRequest) XXX_Unmarshal

func (m *SendProprietaryPayloadRequest) XXX_Unmarshal(b []byte) error

type SendProprietaryPayloadResponse

type SendProprietaryPayloadResponse struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*SendProprietaryPayloadResponse) Descriptor

func (*SendProprietaryPayloadResponse) Descriptor() ([]byte, []int)

func (*SendProprietaryPayloadResponse) ProtoMessage

func (*SendProprietaryPayloadResponse) ProtoMessage()

func (*SendProprietaryPayloadResponse) Reset

func (m *SendProprietaryPayloadResponse) Reset()

func (*SendProprietaryPayloadResponse) String

func (*SendProprietaryPayloadResponse) XXX_DiscardUnknown

func (m *SendProprietaryPayloadResponse) XXX_DiscardUnknown()

func (*SendProprietaryPayloadResponse) XXX_Marshal

func (m *SendProprietaryPayloadResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*SendProprietaryPayloadResponse) XXX_Merge

func (dst *SendProprietaryPayloadResponse) XXX_Merge(src proto.Message)

func (*SendProprietaryPayloadResponse) XXX_Size

func (m *SendProprietaryPayloadResponse) XXX_Size() int

func (*SendProprietaryPayloadResponse) XXX_Unmarshal

func (m *SendProprietaryPayloadResponse) XXX_Unmarshal(b []byte) error

type ServiceProfile

type ServiceProfile struct {
	ServiceProfileID       string     `protobuf:"bytes,1,opt,name=serviceProfileID" json:"serviceProfileID,omitempty"`
	UlRate                 uint32     `protobuf:"varint,2,opt,name=ulRate" json:"ulRate,omitempty"`
	UlBucketSize           uint32     `protobuf:"varint,3,opt,name=ulBucketSize" json:"ulBucketSize,omitempty"`
	UlRatePolicy           RatePolicy `protobuf:"varint,4,opt,name=ulRatePolicy,enum=ns.RatePolicy" json:"ulRatePolicy,omitempty"`
	DlRate                 uint32     `protobuf:"varint,5,opt,name=dlRate" json:"dlRate,omitempty"`
	DlBucketSize           uint32     `protobuf:"varint,6,opt,name=dlBucketSize" json:"dlBucketSize,omitempty"`
	DlRatePolicy           RatePolicy `protobuf:"varint,7,opt,name=dlRatePolicy,enum=ns.RatePolicy" json:"dlRatePolicy,omitempty"`
	AddGWMetadata          bool       `protobuf:"varint,8,opt,name=addGWMetadata" json:"addGWMetadata,omitempty"`
	DevStatusReqFreq       uint32     `protobuf:"varint,9,opt,name=devStatusReqFreq" json:"devStatusReqFreq,omitempty"`
	ReportDevStatusBattery bool       `protobuf:"varint,10,opt,name=reportDevStatusBattery" json:"reportDevStatusBattery,omitempty"`
	ReportDevStatusMargin  bool       `protobuf:"varint,11,opt,name=reportDevStatusMargin" json:"reportDevStatusMargin,omitempty"`
	DrMin                  uint32     `protobuf:"varint,12,opt,name=drMin" json:"drMin,omitempty"`
	DrMax                  uint32     `protobuf:"varint,13,opt,name=drMax" json:"drMax,omitempty"`
	ChannelMask            []byte     `protobuf:"bytes,14,opt,name=channelMask,proto3" json:"channelMask,omitempty"`
	PrAllowed              bool       `protobuf:"varint,15,opt,name=prAllowed" json:"prAllowed,omitempty"`
	HrAllowed              bool       `protobuf:"varint,16,opt,name=hrAllowed" json:"hrAllowed,omitempty"`
	RaAllowed              bool       `protobuf:"varint,17,opt,name=raAllowed" json:"raAllowed,omitempty"`
	NwkGeoLoc              bool       `protobuf:"varint,18,opt,name=nwkGeoLoc" json:"nwkGeoLoc,omitempty"`
	TargetPER              uint32     `protobuf:"varint,19,opt,name=targetPER" json:"targetPER,omitempty"`
	MinGWDiversity         uint32     `protobuf:"varint,20,opt,name=minGWDiversity" json:"minGWDiversity,omitempty"`
	XXX_NoUnkeyedLiteral   struct{}   `json:"-"`
	XXX_unrecognized       []byte     `json:"-"`
	XXX_sizecache          int32      `json:"-"`
}

func (*ServiceProfile) Descriptor

func (*ServiceProfile) Descriptor() ([]byte, []int)

func (*ServiceProfile) GetAddGWMetadata

func (m *ServiceProfile) GetAddGWMetadata() bool

func (*ServiceProfile) GetChannelMask

func (m *ServiceProfile) GetChannelMask() []byte

func (*ServiceProfile) GetDevStatusReqFreq

func (m *ServiceProfile) GetDevStatusReqFreq() uint32

func (*ServiceProfile) GetDlBucketSize

func (m *ServiceProfile) GetDlBucketSize() uint32

func (*ServiceProfile) GetDlRate

func (m *ServiceProfile) GetDlRate() uint32

func (*ServiceProfile) GetDlRatePolicy

func (m *ServiceProfile) GetDlRatePolicy() RatePolicy

func (*ServiceProfile) GetDrMax

func (m *ServiceProfile) GetDrMax() uint32

func (*ServiceProfile) GetDrMin

func (m *ServiceProfile) GetDrMin() uint32

func (*ServiceProfile) GetHrAllowed

func (m *ServiceProfile) GetHrAllowed() bool

func (*ServiceProfile) GetMinGWDiversity

func (m *ServiceProfile) GetMinGWDiversity() uint32

func (*ServiceProfile) GetNwkGeoLoc

func (m *ServiceProfile) GetNwkGeoLoc() bool

func (*ServiceProfile) GetPrAllowed

func (m *ServiceProfile) GetPrAllowed() bool

func (*ServiceProfile) GetRaAllowed

func (m *ServiceProfile) GetRaAllowed() bool

func (*ServiceProfile) GetReportDevStatusBattery

func (m *ServiceProfile) GetReportDevStatusBattery() bool

func (*ServiceProfile) GetReportDevStatusMargin

func (m *ServiceProfile) GetReportDevStatusMargin() bool

func (*ServiceProfile) GetServiceProfileID

func (m *ServiceProfile) GetServiceProfileID() string

func (*ServiceProfile) GetTargetPER

func (m *ServiceProfile) GetTargetPER() uint32

func (*ServiceProfile) GetUlBucketSize

func (m *ServiceProfile) GetUlBucketSize() uint32

func (*ServiceProfile) GetUlRate

func (m *ServiceProfile) GetUlRate() uint32

func (*ServiceProfile) GetUlRatePolicy

func (m *ServiceProfile) GetUlRatePolicy() RatePolicy

func (*ServiceProfile) ProtoMessage

func (*ServiceProfile) ProtoMessage()

func (*ServiceProfile) Reset

func (m *ServiceProfile) Reset()

func (*ServiceProfile) String

func (m *ServiceProfile) String() string

func (*ServiceProfile) XXX_DiscardUnknown

func (m *ServiceProfile) XXX_DiscardUnknown()

func (*ServiceProfile) XXX_Marshal

func (m *ServiceProfile) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ServiceProfile) XXX_Merge

func (dst *ServiceProfile) XXX_Merge(src proto.Message)

func (*ServiceProfile) XXX_Size

func (m *ServiceProfile) XXX_Size() int

func (*ServiceProfile) XXX_Unmarshal

func (m *ServiceProfile) XXX_Unmarshal(b []byte) error

type StreamFrameLogsForDeviceRequest

type StreamFrameLogsForDeviceRequest struct {
	// DevEUI of the device.
	DevEUI               []byte   `protobuf:"bytes,1,opt,name=devEUI,proto3" json:"devEUI,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*StreamFrameLogsForDeviceRequest) Descriptor

func (*StreamFrameLogsForDeviceRequest) Descriptor() ([]byte, []int)

func (*StreamFrameLogsForDeviceRequest) GetDevEUI

func (m *StreamFrameLogsForDeviceRequest) GetDevEUI() []byte

func (*StreamFrameLogsForDeviceRequest) ProtoMessage

func (*StreamFrameLogsForDeviceRequest) ProtoMessage()

func (*StreamFrameLogsForDeviceRequest) Reset

func (*StreamFrameLogsForDeviceRequest) String

func (*StreamFrameLogsForDeviceRequest) XXX_DiscardUnknown

func (m *StreamFrameLogsForDeviceRequest) XXX_DiscardUnknown()

func (*StreamFrameLogsForDeviceRequest) XXX_Marshal

func (m *StreamFrameLogsForDeviceRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*StreamFrameLogsForDeviceRequest) XXX_Merge

func (dst *StreamFrameLogsForDeviceRequest) XXX_Merge(src proto.Message)

func (*StreamFrameLogsForDeviceRequest) XXX_Size

func (m *StreamFrameLogsForDeviceRequest) XXX_Size() int

func (*StreamFrameLogsForDeviceRequest) XXX_Unmarshal

func (m *StreamFrameLogsForDeviceRequest) XXX_Unmarshal(b []byte) error

type StreamFrameLogsForDeviceResponse

type StreamFrameLogsForDeviceResponse struct {
	// Contains zero or one uplink frame.
	UplinkFrames []*UplinkFrameLog `protobuf:"bytes,1,rep,name=uplinkFrames" json:"uplinkFrames,omitempty"`
	// Contains zero or one downlink frame.
	DownlinkFrames       []*DownlinkFrameLog `protobuf:"bytes,2,rep,name=downlinkFrames" json:"downlinkFrames,omitempty"`
	XXX_NoUnkeyedLiteral struct{}            `json:"-"`
	XXX_unrecognized     []byte              `json:"-"`
	XXX_sizecache        int32               `json:"-"`
}

func (*StreamFrameLogsForDeviceResponse) Descriptor

func (*StreamFrameLogsForDeviceResponse) Descriptor() ([]byte, []int)

func (*StreamFrameLogsForDeviceResponse) GetDownlinkFrames

func (m *StreamFrameLogsForDeviceResponse) GetDownlinkFrames() []*DownlinkFrameLog

func (*StreamFrameLogsForDeviceResponse) GetUplinkFrames

func (m *StreamFrameLogsForDeviceResponse) GetUplinkFrames() []*UplinkFrameLog

func (*StreamFrameLogsForDeviceResponse) ProtoMessage

func (*StreamFrameLogsForDeviceResponse) ProtoMessage()

func (*StreamFrameLogsForDeviceResponse) Reset

func (*StreamFrameLogsForDeviceResponse) String

func (*StreamFrameLogsForDeviceResponse) XXX_DiscardUnknown

func (m *StreamFrameLogsForDeviceResponse) XXX_DiscardUnknown()

func (*StreamFrameLogsForDeviceResponse) XXX_Marshal

func (m *StreamFrameLogsForDeviceResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*StreamFrameLogsForDeviceResponse) XXX_Merge

func (dst *StreamFrameLogsForDeviceResponse) XXX_Merge(src proto.Message)

func (*StreamFrameLogsForDeviceResponse) XXX_Size

func (m *StreamFrameLogsForDeviceResponse) XXX_Size() int

func (*StreamFrameLogsForDeviceResponse) XXX_Unmarshal

func (m *StreamFrameLogsForDeviceResponse) XXX_Unmarshal(b []byte) error

type StreamFrameLogsForGatewayRequest

type StreamFrameLogsForGatewayRequest struct {
	// MAC address of the gateway.
	Mac                  []byte   `protobuf:"bytes,1,opt,name=mac,proto3" json:"mac,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*StreamFrameLogsForGatewayRequest) Descriptor

func (*StreamFrameLogsForGatewayRequest) Descriptor() ([]byte, []int)

func (*StreamFrameLogsForGatewayRequest) GetMac

func (m *StreamFrameLogsForGatewayRequest) GetMac() []byte

func (*StreamFrameLogsForGatewayRequest) ProtoMessage

func (*StreamFrameLogsForGatewayRequest) ProtoMessage()

func (*StreamFrameLogsForGatewayRequest) Reset

func (*StreamFrameLogsForGatewayRequest) String

func (*StreamFrameLogsForGatewayRequest) XXX_DiscardUnknown

func (m *StreamFrameLogsForGatewayRequest) XXX_DiscardUnknown()

func (*StreamFrameLogsForGatewayRequest) XXX_Marshal

func (m *StreamFrameLogsForGatewayRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*StreamFrameLogsForGatewayRequest) XXX_Merge

func (dst *StreamFrameLogsForGatewayRequest) XXX_Merge(src proto.Message)

func (*StreamFrameLogsForGatewayRequest) XXX_Size

func (m *StreamFrameLogsForGatewayRequest) XXX_Size() int

func (*StreamFrameLogsForGatewayRequest) XXX_Unmarshal

func (m *StreamFrameLogsForGatewayRequest) XXX_Unmarshal(b []byte) error

type StreamFrameLogsForGatewayResponse

type StreamFrameLogsForGatewayResponse struct {
	// Contains zero or one uplink frame.
	UplinkFrames []*UplinkFrameLog `protobuf:"bytes,1,rep,name=uplinkFrames" json:"uplinkFrames,omitempty"`
	// Contains zero or one downlink frame.
	DownlinkFrames       []*DownlinkFrameLog `protobuf:"bytes,2,rep,name=downlinkFrames" json:"downlinkFrames,omitempty"`
	XXX_NoUnkeyedLiteral struct{}            `json:"-"`
	XXX_unrecognized     []byte              `json:"-"`
	XXX_sizecache        int32               `json:"-"`
}

func (*StreamFrameLogsForGatewayResponse) Descriptor

func (*StreamFrameLogsForGatewayResponse) Descriptor() ([]byte, []int)

func (*StreamFrameLogsForGatewayResponse) GetDownlinkFrames

func (m *StreamFrameLogsForGatewayResponse) GetDownlinkFrames() []*DownlinkFrameLog

func (*StreamFrameLogsForGatewayResponse) GetUplinkFrames

func (m *StreamFrameLogsForGatewayResponse) GetUplinkFrames() []*UplinkFrameLog

func (*StreamFrameLogsForGatewayResponse) ProtoMessage

func (*StreamFrameLogsForGatewayResponse) ProtoMessage()

func (*StreamFrameLogsForGatewayResponse) Reset

func (*StreamFrameLogsForGatewayResponse) String

func (*StreamFrameLogsForGatewayResponse) XXX_DiscardUnknown

func (m *StreamFrameLogsForGatewayResponse) XXX_DiscardUnknown()

func (*StreamFrameLogsForGatewayResponse) XXX_Marshal

func (m *StreamFrameLogsForGatewayResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*StreamFrameLogsForGatewayResponse) XXX_Merge

func (dst *StreamFrameLogsForGatewayResponse) XXX_Merge(src proto.Message)

func (*StreamFrameLogsForGatewayResponse) XXX_Size

func (m *StreamFrameLogsForGatewayResponse) XXX_Size() int

func (*StreamFrameLogsForGatewayResponse) XXX_Unmarshal

func (m *StreamFrameLogsForGatewayResponse) XXX_Unmarshal(b []byte) error

type UpdateDeviceProfileRequest

type UpdateDeviceProfileRequest struct {
	DeviceProfile        *DeviceProfile `protobuf:"bytes,1,opt,name=deviceProfile" json:"deviceProfile,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*UpdateDeviceProfileRequest) Descriptor

func (*UpdateDeviceProfileRequest) Descriptor() ([]byte, []int)

func (*UpdateDeviceProfileRequest) GetDeviceProfile

func (m *UpdateDeviceProfileRequest) GetDeviceProfile() *DeviceProfile

func (*UpdateDeviceProfileRequest) ProtoMessage

func (*UpdateDeviceProfileRequest) ProtoMessage()

func (*UpdateDeviceProfileRequest) Reset

func (m *UpdateDeviceProfileRequest) Reset()

func (*UpdateDeviceProfileRequest) String

func (m *UpdateDeviceProfileRequest) String() string

func (*UpdateDeviceProfileRequest) XXX_DiscardUnknown

func (m *UpdateDeviceProfileRequest) XXX_DiscardUnknown()

func (*UpdateDeviceProfileRequest) XXX_Marshal

func (m *UpdateDeviceProfileRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UpdateDeviceProfileRequest) XXX_Merge

func (dst *UpdateDeviceProfileRequest) XXX_Merge(src proto.Message)

func (*UpdateDeviceProfileRequest) XXX_Size

func (m *UpdateDeviceProfileRequest) XXX_Size() int

func (*UpdateDeviceProfileRequest) XXX_Unmarshal

func (m *UpdateDeviceProfileRequest) XXX_Unmarshal(b []byte) error

type UpdateDeviceProfileResponse

type UpdateDeviceProfileResponse struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*UpdateDeviceProfileResponse) Descriptor

func (*UpdateDeviceProfileResponse) Descriptor() ([]byte, []int)

func (*UpdateDeviceProfileResponse) ProtoMessage

func (*UpdateDeviceProfileResponse) ProtoMessage()

func (*UpdateDeviceProfileResponse) Reset

func (m *UpdateDeviceProfileResponse) Reset()

func (*UpdateDeviceProfileResponse) String

func (m *UpdateDeviceProfileResponse) String() string

func (*UpdateDeviceProfileResponse) XXX_DiscardUnknown

func (m *UpdateDeviceProfileResponse) XXX_DiscardUnknown()

func (*UpdateDeviceProfileResponse) XXX_Marshal

func (m *UpdateDeviceProfileResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UpdateDeviceProfileResponse) XXX_Merge

func (dst *UpdateDeviceProfileResponse) XXX_Merge(src proto.Message)

func (*UpdateDeviceProfileResponse) XXX_Size

func (m *UpdateDeviceProfileResponse) XXX_Size() int

func (*UpdateDeviceProfileResponse) XXX_Unmarshal

func (m *UpdateDeviceProfileResponse) XXX_Unmarshal(b []byte) error

type UpdateDeviceRequest

type UpdateDeviceRequest struct {
	Device               *Device  `protobuf:"bytes,1,opt,name=device" json:"device,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*UpdateDeviceRequest) Descriptor

func (*UpdateDeviceRequest) Descriptor() ([]byte, []int)

func (*UpdateDeviceRequest) GetDevice

func (m *UpdateDeviceRequest) GetDevice() *Device

func (*UpdateDeviceRequest) ProtoMessage

func (*UpdateDeviceRequest) ProtoMessage()

func (*UpdateDeviceRequest) Reset

func (m *UpdateDeviceRequest) Reset()

func (*UpdateDeviceRequest) String

func (m *UpdateDeviceRequest) String() string

func (*UpdateDeviceRequest) XXX_DiscardUnknown

func (m *UpdateDeviceRequest) XXX_DiscardUnknown()

func (*UpdateDeviceRequest) XXX_Marshal

func (m *UpdateDeviceRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UpdateDeviceRequest) XXX_Merge

func (dst *UpdateDeviceRequest) XXX_Merge(src proto.Message)

func (*UpdateDeviceRequest) XXX_Size

func (m *UpdateDeviceRequest) XXX_Size() int

func (*UpdateDeviceRequest) XXX_Unmarshal

func (m *UpdateDeviceRequest) XXX_Unmarshal(b []byte) error

type UpdateDeviceResponse

type UpdateDeviceResponse struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*UpdateDeviceResponse) Descriptor

func (*UpdateDeviceResponse) Descriptor() ([]byte, []int)

func (*UpdateDeviceResponse) ProtoMessage

func (*UpdateDeviceResponse) ProtoMessage()

func (*UpdateDeviceResponse) Reset

func (m *UpdateDeviceResponse) Reset()

func (*UpdateDeviceResponse) String

func (m *UpdateDeviceResponse) String() string

func (*UpdateDeviceResponse) XXX_DiscardUnknown

func (m *UpdateDeviceResponse) XXX_DiscardUnknown()

func (*UpdateDeviceResponse) XXX_Marshal

func (m *UpdateDeviceResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UpdateDeviceResponse) XXX_Merge

func (dst *UpdateDeviceResponse) XXX_Merge(src proto.Message)

func (*UpdateDeviceResponse) XXX_Size

func (m *UpdateDeviceResponse) XXX_Size() int

func (*UpdateDeviceResponse) XXX_Unmarshal

func (m *UpdateDeviceResponse) XXX_Unmarshal(b []byte) error

type UpdateGatewayProfileRequest

type UpdateGatewayProfileRequest struct {
	GatewayProfile       *GatewayProfile `protobuf:"bytes,1,opt,name=gatewayProfile" json:"gatewayProfile,omitempty"`
	XXX_NoUnkeyedLiteral struct{}        `json:"-"`
	XXX_unrecognized     []byte          `json:"-"`
	XXX_sizecache        int32           `json:"-"`
}

func (*UpdateGatewayProfileRequest) Descriptor

func (*UpdateGatewayProfileRequest) Descriptor() ([]byte, []int)

func (*UpdateGatewayProfileRequest) GetGatewayProfile

func (m *UpdateGatewayProfileRequest) GetGatewayProfile() *GatewayProfile

func (*UpdateGatewayProfileRequest) ProtoMessage

func (*UpdateGatewayProfileRequest) ProtoMessage()

func (*UpdateGatewayProfileRequest) Reset

func (m *UpdateGatewayProfileRequest) Reset()

func (*UpdateGatewayProfileRequest) String

func (m *UpdateGatewayProfileRequest) String() string

func (*UpdateGatewayProfileRequest) XXX_DiscardUnknown

func (m *UpdateGatewayProfileRequest) XXX_DiscardUnknown()

func (*UpdateGatewayProfileRequest) XXX_Marshal

func (m *UpdateGatewayProfileRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UpdateGatewayProfileRequest) XXX_Merge

func (dst *UpdateGatewayProfileRequest) XXX_Merge(src proto.Message)

func (*UpdateGatewayProfileRequest) XXX_Size

func (m *UpdateGatewayProfileRequest) XXX_Size() int

func (*UpdateGatewayProfileRequest) XXX_Unmarshal

func (m *UpdateGatewayProfileRequest) XXX_Unmarshal(b []byte) error

type UpdateGatewayProfileResponse

type UpdateGatewayProfileResponse struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*UpdateGatewayProfileResponse) Descriptor

func (*UpdateGatewayProfileResponse) Descriptor() ([]byte, []int)

func (*UpdateGatewayProfileResponse) ProtoMessage

func (*UpdateGatewayProfileResponse) ProtoMessage()

func (*UpdateGatewayProfileResponse) Reset

func (m *UpdateGatewayProfileResponse) Reset()

func (*UpdateGatewayProfileResponse) String

func (*UpdateGatewayProfileResponse) XXX_DiscardUnknown

func (m *UpdateGatewayProfileResponse) XXX_DiscardUnknown()

func (*UpdateGatewayProfileResponse) XXX_Marshal

func (m *UpdateGatewayProfileResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UpdateGatewayProfileResponse) XXX_Merge

func (dst *UpdateGatewayProfileResponse) XXX_Merge(src proto.Message)

func (*UpdateGatewayProfileResponse) XXX_Size

func (m *UpdateGatewayProfileResponse) XXX_Size() int

func (*UpdateGatewayProfileResponse) XXX_Unmarshal

func (m *UpdateGatewayProfileResponse) XXX_Unmarshal(b []byte) error

type UpdateGatewayRequest

type UpdateGatewayRequest struct {
	// MAC address of the gateway.
	Mac []byte `protobuf:"bytes,1,opt,name=mac,proto3" json:"mac,omitempty"`
	// Name of the gateway.
	Name string `protobuf:"bytes,2,opt,name=name" json:"name,omitempty"`
	// Description for the gateway.
	Description string `protobuf:"bytes,3,opt,name=description" json:"description,omitempty"`
	// Latitude of the gateway.
	Latitude float64 `protobuf:"fixed64,4,opt,name=latitude" json:"latitude,omitempty"`
	// Longitude of the gateway.
	Longitude float64 `protobuf:"fixed64,5,opt,name=longitude" json:"longitude,omitempty"`
	// Altitude of the gateway.
	Altitude float64 `protobuf:"fixed64,6,opt,name=altitude" json:"altitude,omitempty"`
	// ID of the gateway-profile.
	GatewayProfileID     string   `protobuf:"bytes,8,opt,name=gatewayProfileID" json:"gatewayProfileID,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*UpdateGatewayRequest) Descriptor

func (*UpdateGatewayRequest) Descriptor() ([]byte, []int)

func (*UpdateGatewayRequest) GetAltitude

func (m *UpdateGatewayRequest) GetAltitude() float64

func (*UpdateGatewayRequest) GetDescription

func (m *UpdateGatewayRequest) GetDescription() string

func (*UpdateGatewayRequest) GetGatewayProfileID

func (m *UpdateGatewayRequest) GetGatewayProfileID() string

func (*UpdateGatewayRequest) GetLatitude

func (m *UpdateGatewayRequest) GetLatitude() float64

func (*UpdateGatewayRequest) GetLongitude

func (m *UpdateGatewayRequest) GetLongitude() float64

func (*UpdateGatewayRequest) GetMac

func (m *UpdateGatewayRequest) GetMac() []byte

func (*UpdateGatewayRequest) GetName

func (m *UpdateGatewayRequest) GetName() string

func (*UpdateGatewayRequest) ProtoMessage

func (*UpdateGatewayRequest) ProtoMessage()

func (*UpdateGatewayRequest) Reset

func (m *UpdateGatewayRequest) Reset()

func (*UpdateGatewayRequest) String

func (m *UpdateGatewayRequest) String() string

func (*UpdateGatewayRequest) XXX_DiscardUnknown

func (m *UpdateGatewayRequest) XXX_DiscardUnknown()

func (*UpdateGatewayRequest) XXX_Marshal

func (m *UpdateGatewayRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UpdateGatewayRequest) XXX_Merge

func (dst *UpdateGatewayRequest) XXX_Merge(src proto.Message)

func (*UpdateGatewayRequest) XXX_Size

func (m *UpdateGatewayRequest) XXX_Size() int

func (*UpdateGatewayRequest) XXX_Unmarshal

func (m *UpdateGatewayRequest) XXX_Unmarshal(b []byte) error

type UpdateGatewayResponse

type UpdateGatewayResponse struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*UpdateGatewayResponse) Descriptor

func (*UpdateGatewayResponse) Descriptor() ([]byte, []int)

func (*UpdateGatewayResponse) ProtoMessage

func (*UpdateGatewayResponse) ProtoMessage()

func (*UpdateGatewayResponse) Reset

func (m *UpdateGatewayResponse) Reset()

func (*UpdateGatewayResponse) String

func (m *UpdateGatewayResponse) String() string

func (*UpdateGatewayResponse) XXX_DiscardUnknown

func (m *UpdateGatewayResponse) XXX_DiscardUnknown()

func (*UpdateGatewayResponse) XXX_Marshal

func (m *UpdateGatewayResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UpdateGatewayResponse) XXX_Merge

func (dst *UpdateGatewayResponse) XXX_Merge(src proto.Message)

func (*UpdateGatewayResponse) XXX_Size

func (m *UpdateGatewayResponse) XXX_Size() int

func (*UpdateGatewayResponse) XXX_Unmarshal

func (m *UpdateGatewayResponse) XXX_Unmarshal(b []byte) error

type UpdateRoutingProfileRequest

type UpdateRoutingProfileRequest struct {
	RoutingProfile *RoutingProfile `protobuf:"bytes,1,opt,name=routingProfile" json:"routingProfile,omitempty"`
	// ca certificate for connecting to lora-app-server
	CaCert string `protobuf:"bytes,2,opt,name=caCert" json:"caCert,omitempty"`
	// tls certificate for connecting to lora-app-server
	TlsCert string `protobuf:"bytes,3,opt,name=tlsCert" json:"tlsCert,omitempty"`
	// tls key for connecting to lora-app-server
	TlsKey               string   `protobuf:"bytes,4,opt,name=tlsKey" json:"tlsKey,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*UpdateRoutingProfileRequest) Descriptor

func (*UpdateRoutingProfileRequest) Descriptor() ([]byte, []int)

func (*UpdateRoutingProfileRequest) GetCaCert

func (m *UpdateRoutingProfileRequest) GetCaCert() string

func (*UpdateRoutingProfileRequest) GetRoutingProfile

func (m *UpdateRoutingProfileRequest) GetRoutingProfile() *RoutingProfile

func (*UpdateRoutingProfileRequest) GetTlsCert

func (m *UpdateRoutingProfileRequest) GetTlsCert() string

func (*UpdateRoutingProfileRequest) GetTlsKey

func (m *UpdateRoutingProfileRequest) GetTlsKey() string

func (*UpdateRoutingProfileRequest) ProtoMessage

func (*UpdateRoutingProfileRequest) ProtoMessage()

func (*UpdateRoutingProfileRequest) Reset

func (m *UpdateRoutingProfileRequest) Reset()

func (*UpdateRoutingProfileRequest) String

func (m *UpdateRoutingProfileRequest) String() string

func (*UpdateRoutingProfileRequest) XXX_DiscardUnknown

func (m *UpdateRoutingProfileRequest) XXX_DiscardUnknown()

func (*UpdateRoutingProfileRequest) XXX_Marshal

func (m *UpdateRoutingProfileRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UpdateRoutingProfileRequest) XXX_Merge

func (dst *UpdateRoutingProfileRequest) XXX_Merge(src proto.Message)

func (*UpdateRoutingProfileRequest) XXX_Size

func (m *UpdateRoutingProfileRequest) XXX_Size() int

func (*UpdateRoutingProfileRequest) XXX_Unmarshal

func (m *UpdateRoutingProfileRequest) XXX_Unmarshal(b []byte) error

type UpdateRoutingProfileResponse

type UpdateRoutingProfileResponse struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*UpdateRoutingProfileResponse) Descriptor

func (*UpdateRoutingProfileResponse) Descriptor() ([]byte, []int)

func (*UpdateRoutingProfileResponse) ProtoMessage

func (*UpdateRoutingProfileResponse) ProtoMessage()

func (*UpdateRoutingProfileResponse) Reset

func (m *UpdateRoutingProfileResponse) Reset()

func (*UpdateRoutingProfileResponse) String

func (*UpdateRoutingProfileResponse) XXX_DiscardUnknown

func (m *UpdateRoutingProfileResponse) XXX_DiscardUnknown()

func (*UpdateRoutingProfileResponse) XXX_Marshal

func (m *UpdateRoutingProfileResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UpdateRoutingProfileResponse) XXX_Merge

func (dst *UpdateRoutingProfileResponse) XXX_Merge(src proto.Message)

func (*UpdateRoutingProfileResponse) XXX_Size

func (m *UpdateRoutingProfileResponse) XXX_Size() int

func (*UpdateRoutingProfileResponse) XXX_Unmarshal

func (m *UpdateRoutingProfileResponse) XXX_Unmarshal(b []byte) error

type UpdateServiceProfileRequest

type UpdateServiceProfileRequest struct {
	ServiceProfile       *ServiceProfile `protobuf:"bytes,1,opt,name=serviceProfile" json:"serviceProfile,omitempty"`
	XXX_NoUnkeyedLiteral struct{}        `json:"-"`
	XXX_unrecognized     []byte          `json:"-"`
	XXX_sizecache        int32           `json:"-"`
}

func (*UpdateServiceProfileRequest) Descriptor

func (*UpdateServiceProfileRequest) Descriptor() ([]byte, []int)

func (*UpdateServiceProfileRequest) GetServiceProfile

func (m *UpdateServiceProfileRequest) GetServiceProfile() *ServiceProfile

func (*UpdateServiceProfileRequest) ProtoMessage

func (*UpdateServiceProfileRequest) ProtoMessage()

func (*UpdateServiceProfileRequest) Reset

func (m *UpdateServiceProfileRequest) Reset()

func (*UpdateServiceProfileRequest) String

func (m *UpdateServiceProfileRequest) String() string

func (*UpdateServiceProfileRequest) XXX_DiscardUnknown

func (m *UpdateServiceProfileRequest) XXX_DiscardUnknown()

func (*UpdateServiceProfileRequest) XXX_Marshal

func (m *UpdateServiceProfileRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UpdateServiceProfileRequest) XXX_Merge

func (dst *UpdateServiceProfileRequest) XXX_Merge(src proto.Message)

func (*UpdateServiceProfileRequest) XXX_Size

func (m *UpdateServiceProfileRequest) XXX_Size() int

func (*UpdateServiceProfileRequest) XXX_Unmarshal

func (m *UpdateServiceProfileRequest) XXX_Unmarshal(b []byte) error

type UpdateServiceProfileResponse

type UpdateServiceProfileResponse struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*UpdateServiceProfileResponse) Descriptor

func (*UpdateServiceProfileResponse) Descriptor() ([]byte, []int)

func (*UpdateServiceProfileResponse) ProtoMessage

func (*UpdateServiceProfileResponse) ProtoMessage()

func (*UpdateServiceProfileResponse) Reset

func (m *UpdateServiceProfileResponse) Reset()

func (*UpdateServiceProfileResponse) String

func (*UpdateServiceProfileResponse) XXX_DiscardUnknown

func (m *UpdateServiceProfileResponse) XXX_DiscardUnknown()

func (*UpdateServiceProfileResponse) XXX_Marshal

func (m *UpdateServiceProfileResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UpdateServiceProfileResponse) XXX_Merge

func (dst *UpdateServiceProfileResponse) XXX_Merge(src proto.Message)

func (*UpdateServiceProfileResponse) XXX_Size

func (m *UpdateServiceProfileResponse) XXX_Size() int

func (*UpdateServiceProfileResponse) XXX_Unmarshal

func (m *UpdateServiceProfileResponse) XXX_Unmarshal(b []byte) error

type UplinkFrameLog

type UplinkFrameLog struct {
	// TX information of the uplink.
	TxInfo *UplinkTXInfo `protobuf:"bytes,1,opt,name=txInfo" json:"txInfo,omitempty"`
	// RX information of the uplink.
	RxInfo []*UplinkRXInfo `protobuf:"bytes,2,rep,name=rxInfo" json:"rxInfo,omitempty"`
	// LoRaWAN PHYPayload.
	PhyPayload           []byte   `protobuf:"bytes,3,opt,name=phyPayload,proto3" json:"phyPayload,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*UplinkFrameLog) Descriptor

func (*UplinkFrameLog) Descriptor() ([]byte, []int)

func (*UplinkFrameLog) GetPhyPayload

func (m *UplinkFrameLog) GetPhyPayload() []byte

func (*UplinkFrameLog) GetRxInfo

func (m *UplinkFrameLog) GetRxInfo() []*UplinkRXInfo

func (*UplinkFrameLog) GetTxInfo

func (m *UplinkFrameLog) GetTxInfo() *UplinkTXInfo

func (*UplinkFrameLog) ProtoMessage

func (*UplinkFrameLog) ProtoMessage()

func (*UplinkFrameLog) Reset

func (m *UplinkFrameLog) Reset()

func (*UplinkFrameLog) String

func (m *UplinkFrameLog) String() string

func (*UplinkFrameLog) XXX_DiscardUnknown

func (m *UplinkFrameLog) XXX_DiscardUnknown()

func (*UplinkFrameLog) XXX_Marshal

func (m *UplinkFrameLog) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UplinkFrameLog) XXX_Merge

func (dst *UplinkFrameLog) XXX_Merge(src proto.Message)

func (*UplinkFrameLog) XXX_Size

func (m *UplinkFrameLog) XXX_Size() int

func (*UplinkFrameLog) XXX_Unmarshal

func (m *UplinkFrameLog) XXX_Unmarshal(b []byte) error

type UplinkRXInfo

type UplinkRXInfo struct {
	// Gateway MAC.
	Mac []byte `protobuf:"bytes,1,opt,name=mac,proto3" json:"mac,omitempty"`
	// Time when the frame was received (if available).
	Time string `protobuf:"bytes,2,opt,name=time" json:"time,omitempty"`
	// Time when the frame was received as time since GPS epoch (if available).
	TimeSinceGPSEpoch string `protobuf:"bytes,3,opt,name=timeSinceGPSEpoch" json:"timeSinceGPSEpoch,omitempty"`
	// Gateway internal timestamp.
	Timestamp uint32 `protobuf:"varint,4,opt,name=timestamp" json:"timestamp,omitempty"`
	// RSSI.
	Rssi int32 `protobuf:"varint,5,opt,name=rssi" json:"rssi,omitempty"`
	// LoRa SNR.
	LoRaSNR float32 `protobuf:"fixed32,6,opt,name=loRaSNR" json:"loRaSNR,omitempty"`
	// The board identifier that received the uplink frame.
	Board uint32 `protobuf:"varint,7,opt,name=board" json:"board,omitempty"`
	// THe antenna identifier that received the uplink frame.
	Antenna              uint32   `protobuf:"varint,8,opt,name=antenna" json:"antenna,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*UplinkRXInfo) Descriptor

func (*UplinkRXInfo) Descriptor() ([]byte, []int)

func (*UplinkRXInfo) GetAntenna

func (m *UplinkRXInfo) GetAntenna() uint32

func (*UplinkRXInfo) GetBoard

func (m *UplinkRXInfo) GetBoard() uint32

func (*UplinkRXInfo) GetLoRaSNR

func (m *UplinkRXInfo) GetLoRaSNR() float32

func (*UplinkRXInfo) GetMac

func (m *UplinkRXInfo) GetMac() []byte

func (*UplinkRXInfo) GetRssi

func (m *UplinkRXInfo) GetRssi() int32

func (*UplinkRXInfo) GetTime

func (m *UplinkRXInfo) GetTime() string

func (*UplinkRXInfo) GetTimeSinceGPSEpoch

func (m *UplinkRXInfo) GetTimeSinceGPSEpoch() string

func (*UplinkRXInfo) GetTimestamp

func (m *UplinkRXInfo) GetTimestamp() uint32

func (*UplinkRXInfo) ProtoMessage

func (*UplinkRXInfo) ProtoMessage()

func (*UplinkRXInfo) Reset

func (m *UplinkRXInfo) Reset()

func (*UplinkRXInfo) String

func (m *UplinkRXInfo) String() string

func (*UplinkRXInfo) XXX_DiscardUnknown

func (m *UplinkRXInfo) XXX_DiscardUnknown()

func (*UplinkRXInfo) XXX_Marshal

func (m *UplinkRXInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UplinkRXInfo) XXX_Merge

func (dst *UplinkRXInfo) XXX_Merge(src proto.Message)

func (*UplinkRXInfo) XXX_Size

func (m *UplinkRXInfo) XXX_Size() int

func (*UplinkRXInfo) XXX_Unmarshal

func (m *UplinkRXInfo) XXX_Unmarshal(b []byte) error

type UplinkTXInfo

type UplinkTXInfo struct {
	// TX frequency (in Hz).
	Frequency uint32 `protobuf:"varint,1,opt,name=frequency" json:"frequency,omitempty"`
	// Data-rate.
	DataRate *DataRate `protobuf:"bytes,2,opt,name=dataRate" json:"dataRate,omitempty"`
	// Code rate.
	CodeRate             string   `protobuf:"bytes,3,opt,name=codeRate" json:"codeRate,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*UplinkTXInfo) Descriptor

func (*UplinkTXInfo) Descriptor() ([]byte, []int)

func (*UplinkTXInfo) GetCodeRate

func (m *UplinkTXInfo) GetCodeRate() string

func (*UplinkTXInfo) GetDataRate

func (m *UplinkTXInfo) GetDataRate() *DataRate

func (*UplinkTXInfo) GetFrequency

func (m *UplinkTXInfo) GetFrequency() uint32

func (*UplinkTXInfo) ProtoMessage

func (*UplinkTXInfo) ProtoMessage()

func (*UplinkTXInfo) Reset

func (m *UplinkTXInfo) Reset()

func (*UplinkTXInfo) String

func (m *UplinkTXInfo) String() string

func (*UplinkTXInfo) XXX_DiscardUnknown

func (m *UplinkTXInfo) XXX_DiscardUnknown()

func (*UplinkTXInfo) XXX_Marshal

func (m *UplinkTXInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UplinkTXInfo) XXX_Merge

func (dst *UplinkTXInfo) XXX_Merge(src proto.Message)

func (*UplinkTXInfo) XXX_Size

func (m *UplinkTXInfo) XXX_Size() int

func (*UplinkTXInfo) XXX_Unmarshal

func (m *UplinkTXInfo) XXX_Unmarshal(b []byte) error

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL