1 Star 0 Fork 0

Arya123 / chirpstack-api

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
application.pb.go 239.53 KB
一键复制 编辑 原始数据 按行查看 历史
Arya11111 提交于 2024-01-24 13:23 . 监听入网
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556
// Code generated by protoc-gen-go. DO NOT EDIT.
// source: as/external/api/application.proto
package api
import (
context "context"
fmt "fmt"
proto "github.com/golang/protobuf/proto"
_ "google.golang.org/genproto/googleapis/api/annotations"
grpc "google.golang.org/grpc"
codes "google.golang.org/grpc/codes"
status "google.golang.org/grpc/status"
emptypb "google.golang.org/protobuf/types/known/emptypb"
math "math"
)
// Reference imports to suppress errors if they are not otherwise used.
var _ = proto.Marshal
var _ = fmt.Errorf
var _ = math.Inf
// This is a compile-time assertion to ensure that this generated file
// is compatible with the proto package it is being compiled against.
// A compilation error at this line likely means your copy of the
// proto package needs to be updated.
const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
type IntegrationKind int32
const (
IntegrationKind_HTTP IntegrationKind = 0
IntegrationKind_INFLUXDB IntegrationKind = 1
IntegrationKind_THINGSBOARD IntegrationKind = 2
IntegrationKind_MYDEVICES IntegrationKind = 3
IntegrationKind_LORACLOUD IntegrationKind = 4
IntegrationKind_GCP_PUBSUB IntegrationKind = 5
IntegrationKind_AWS_SNS IntegrationKind = 6
IntegrationKind_AZURE_SERVICE_BUS IntegrationKind = 7
IntegrationKind_PILOT_THINGS IntegrationKind = 8
)
var IntegrationKind_name = map[int32]string{
0: "HTTP",
1: "INFLUXDB",
2: "THINGSBOARD",
3: "MYDEVICES",
4: "LORACLOUD",
5: "GCP_PUBSUB",
6: "AWS_SNS",
7: "AZURE_SERVICE_BUS",
8: "PILOT_THINGS",
}
var IntegrationKind_value = map[string]int32{
"HTTP": 0,
"INFLUXDB": 1,
"THINGSBOARD": 2,
"MYDEVICES": 3,
"LORACLOUD": 4,
"GCP_PUBSUB": 5,
"AWS_SNS": 6,
"AZURE_SERVICE_BUS": 7,
"PILOT_THINGS": 8,
}
func (x IntegrationKind) String() string {
return proto.EnumName(IntegrationKind_name, int32(x))
}
func (IntegrationKind) EnumDescriptor() ([]byte, []int) {
return fileDescriptor_0774996cc1ba5bfc, []int{0}
}
type Marshaler int32
const (
Marshaler_JSON Marshaler = 0
Marshaler_PROTOBUF Marshaler = 1
Marshaler_JSON_V3 Marshaler = 2
)
var Marshaler_name = map[int32]string{
0: "JSON",
1: "PROTOBUF",
2: "JSON_V3",
}
var Marshaler_value = map[string]int32{
"JSON": 0,
"PROTOBUF": 1,
"JSON_V3": 2,
}
func (x Marshaler) String() string {
return proto.EnumName(Marshaler_name, int32(x))
}
func (Marshaler) EnumDescriptor() ([]byte, []int) {
return fileDescriptor_0774996cc1ba5bfc, []int{1}
}
type InfluxDBPrecision int32
const (
InfluxDBPrecision_NS InfluxDBPrecision = 0
InfluxDBPrecision_U InfluxDBPrecision = 1
InfluxDBPrecision_MS InfluxDBPrecision = 2
InfluxDBPrecision_S InfluxDBPrecision = 3
InfluxDBPrecision_M InfluxDBPrecision = 4
InfluxDBPrecision_H InfluxDBPrecision = 5
)
var InfluxDBPrecision_name = map[int32]string{
0: "NS",
1: "U",
2: "MS",
3: "S",
4: "M",
5: "H",
}
var InfluxDBPrecision_value = map[string]int32{
"NS": 0,
"U": 1,
"MS": 2,
"S": 3,
"M": 4,
"H": 5,
}
func (x InfluxDBPrecision) String() string {
return proto.EnumName(InfluxDBPrecision_name, int32(x))
}
func (InfluxDBPrecision) EnumDescriptor() ([]byte, []int) {
return fileDescriptor_0774996cc1ba5bfc, []int{2}
}
type Application struct {
// Application ID.
// This will be automatically assigned on create.
Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
// Name of the application (must be unique).
Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
// Description of the application.
Description string `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"`
// ID of the organization to which the application belongs.
// After create, this can not be modified.
OrganizationId int64 `protobuf:"varint,4,opt,name=organization_id,json=organizationID,proto3" json:"organization_id,omitempty"`
// ID of the service profile.
ServiceProfileId string `protobuf:"bytes,5,opt,name=service_profile_id,json=serviceProfileID,proto3" json:"service_profile_id,omitempty"`
// Payload codec.
// NOTE: These field have moved to the device-profile and will be removed
// in the next major release. When set, the device-profile payload_ fields
// have priority over the application payload_ fields.
PayloadCodec string `protobuf:"bytes,6,opt,name=payload_codec,json=payloadCodec,proto3" json:"payload_codec,omitempty"`
// Payload encoder script.
// NOTE: These field have moved to the device-profile and will be removed
// in the next major release. When set, the device-profile payload_ fields
// have priority over the application payload_ fields.
PayloadEncoderScript string `protobuf:"bytes,7,opt,name=payload_encoder_script,json=payloadEncoderScript,proto3" json:"payload_encoder_script,omitempty"`
// Payload decoder script.
// NOTE: These field have moved to the device-profile and will be removed
// in the next major release. When set, the device-profile payload_ fields
// have priority over the application payload_ fields.
PayloadDecoderScript string `protobuf:"bytes,8,opt,name=payload_decoder_script,json=payloadDecoderScript,proto3" json:"payload_decoder_script,omitempty"`
Default bool `protobuf:"varint,9,opt,name=default,proto3" json:"default,omitempty"`
AutoJoin bool `protobuf:"varint,10,opt,name=auto_join,json=autoJoin,proto3" json:"auto_join,omitempty"`
KeyPairs []*ApplicationKeys `protobuf:"bytes,11,rep,name=key_pairs,json=keyPairs,proto3" json:"key_pairs,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *Application) Reset() { *m = Application{} }
func (m *Application) String() string { return proto.CompactTextString(m) }
func (*Application) ProtoMessage() {}
func (*Application) Descriptor() ([]byte, []int) {
return fileDescriptor_0774996cc1ba5bfc, []int{0}
}
func (m *Application) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_Application.Unmarshal(m, b)
}
func (m *Application) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_Application.Marshal(b, m, deterministic)
}
func (m *Application) XXX_Merge(src proto.Message) {
xxx_messageInfo_Application.Merge(m, src)
}
func (m *Application) XXX_Size() int {
return xxx_messageInfo_Application.Size(m)
}
func (m *Application) XXX_DiscardUnknown() {
xxx_messageInfo_Application.DiscardUnknown(m)
}
var xxx_messageInfo_Application proto.InternalMessageInfo
func (m *Application) GetId() int64 {
if m != nil {
return m.Id
}
return 0
}
func (m *Application) GetName() string {
if m != nil {
return m.Name
}
return ""
}
func (m *Application) GetDescription() string {
if m != nil {
return m.Description
}
return ""
}
func (m *Application) GetOrganizationId() int64 {
if m != nil {
return m.OrganizationId
}
return 0
}
func (m *Application) GetServiceProfileId() string {
if m != nil {
return m.ServiceProfileId
}
return ""
}
func (m *Application) GetPayloadCodec() string {
if m != nil {
return m.PayloadCodec
}
return ""
}
func (m *Application) GetPayloadEncoderScript() string {
if m != nil {
return m.PayloadEncoderScript
}
return ""
}
func (m *Application) GetPayloadDecoderScript() string {
if m != nil {
return m.PayloadDecoderScript
}
return ""
}
func (m *Application) GetDefault() bool {
if m != nil {
return m.Default
}
return false
}
func (m *Application) GetAutoJoin() bool {
if m != nil {
return m.AutoJoin
}
return false
}
func (m *Application) GetKeyPairs() []*ApplicationKeys {
if m != nil {
return m.KeyPairs
}
return nil
}
type ApplicationKeys struct {
AppEui string `protobuf:"bytes,1,opt,name=app_eui,json=appEUI,proto3" json:"app_eui,omitempty"`
AppKey string `protobuf:"bytes,2,opt,name=app_key,json=appKey,proto3" json:"app_key,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *ApplicationKeys) Reset() { *m = ApplicationKeys{} }
func (m *ApplicationKeys) String() string { return proto.CompactTextString(m) }
func (*ApplicationKeys) ProtoMessage() {}
func (*ApplicationKeys) Descriptor() ([]byte, []int) {
return fileDescriptor_0774996cc1ba5bfc, []int{1}
}
func (m *ApplicationKeys) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ApplicationKeys.Unmarshal(m, b)
}
func (m *ApplicationKeys) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_ApplicationKeys.Marshal(b, m, deterministic)
}
func (m *ApplicationKeys) XXX_Merge(src proto.Message) {
xxx_messageInfo_ApplicationKeys.Merge(m, src)
}
func (m *ApplicationKeys) XXX_Size() int {
return xxx_messageInfo_ApplicationKeys.Size(m)
}
func (m *ApplicationKeys) XXX_DiscardUnknown() {
xxx_messageInfo_ApplicationKeys.DiscardUnknown(m)
}
var xxx_messageInfo_ApplicationKeys proto.InternalMessageInfo
func (m *ApplicationKeys) GetAppEui() string {
if m != nil {
return m.AppEui
}
return ""
}
func (m *ApplicationKeys) GetAppKey() string {
if m != nil {
return m.AppKey
}
return ""
}
type ApplicationListItem struct {
// Application ID.
Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
// Name of the application.
Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
// Description of the application.
Description string `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"`
// ID of the organization to which the application belongs.
OrganizationId int64 `protobuf:"varint,4,opt,name=organization_id,json=organizationID,proto3" json:"organization_id,omitempty"`
// ID of the service profile.
ServiceProfileId string `protobuf:"bytes,5,opt,name=service_profile_id,json=serviceProfileID,proto3" json:"service_profile_id,omitempty"`
// Service-profile name.
ServiceProfileName string `protobuf:"bytes,6,opt,name=service_profile_name,json=serviceProfileName,proto3" json:"service_profile_name,omitempty"`
Default bool `protobuf:"varint,9,opt,name=default,proto3" json:"default,omitempty"`
AutoJoin bool `protobuf:"varint,10,opt,name=auto_join,json=autoJoin,proto3" json:"auto_join,omitempty"`
KeyPairs []*ApplicationKeys `protobuf:"bytes,11,rep,name=key_pairs,json=keyPairs,proto3" json:"key_pairs,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *ApplicationListItem) Reset() { *m = ApplicationListItem{} }
func (m *ApplicationListItem) String() string { return proto.CompactTextString(m) }
func (*ApplicationListItem) ProtoMessage() {}
func (*ApplicationListItem) Descriptor() ([]byte, []int) {
return fileDescriptor_0774996cc1ba5bfc, []int{2}
}
func (m *ApplicationListItem) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ApplicationListItem.Unmarshal(m, b)
}
func (m *ApplicationListItem) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_ApplicationListItem.Marshal(b, m, deterministic)
}
func (m *ApplicationListItem) XXX_Merge(src proto.Message) {
xxx_messageInfo_ApplicationListItem.Merge(m, src)
}
func (m *ApplicationListItem) XXX_Size() int {
return xxx_messageInfo_ApplicationListItem.Size(m)
}
func (m *ApplicationListItem) XXX_DiscardUnknown() {
xxx_messageInfo_ApplicationListItem.DiscardUnknown(m)
}
var xxx_messageInfo_ApplicationListItem proto.InternalMessageInfo
func (m *ApplicationListItem) GetId() int64 {
if m != nil {
return m.Id
}
return 0
}
func (m *ApplicationListItem) GetName() string {
if m != nil {
return m.Name
}
return ""
}
func (m *ApplicationListItem) GetDescription() string {
if m != nil {
return m.Description
}
return ""
}
func (m *ApplicationListItem) GetOrganizationId() int64 {
if m != nil {
return m.OrganizationId
}
return 0
}
func (m *ApplicationListItem) GetServiceProfileId() string {
if m != nil {
return m.ServiceProfileId
}
return ""
}
func (m *ApplicationListItem) GetServiceProfileName() string {
if m != nil {
return m.ServiceProfileName
}
return ""
}
func (m *ApplicationListItem) GetDefault() bool {
if m != nil {
return m.Default
}
return false
}
func (m *ApplicationListItem) GetAutoJoin() bool {
if m != nil {
return m.AutoJoin
}
return false
}
func (m *ApplicationListItem) GetKeyPairs() []*ApplicationKeys {
if m != nil {
return m.KeyPairs
}
return nil
}
type CreateApplicationRequest struct {
// Application object to create.
Application *Application `protobuf:"bytes,1,opt,name=application,proto3" json:"application,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *CreateApplicationRequest) Reset() { *m = CreateApplicationRequest{} }
func (m *CreateApplicationRequest) String() string { return proto.CompactTextString(m) }
func (*CreateApplicationRequest) ProtoMessage() {}
func (*CreateApplicationRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_0774996cc1ba5bfc, []int{3}
}
func (m *CreateApplicationRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CreateApplicationRequest.Unmarshal(m, b)
}
func (m *CreateApplicationRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_CreateApplicationRequest.Marshal(b, m, deterministic)
}
func (m *CreateApplicationRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_CreateApplicationRequest.Merge(m, src)
}
func (m *CreateApplicationRequest) XXX_Size() int {
return xxx_messageInfo_CreateApplicationRequest.Size(m)
}
func (m *CreateApplicationRequest) XXX_DiscardUnknown() {
xxx_messageInfo_CreateApplicationRequest.DiscardUnknown(m)
}
var xxx_messageInfo_CreateApplicationRequest proto.InternalMessageInfo
func (m *CreateApplicationRequest) GetApplication() *Application {
if m != nil {
return m.Application
}
return nil
}
type CreateApplicationResponse struct {
// Application ID.
Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *CreateApplicationResponse) Reset() { *m = CreateApplicationResponse{} }
func (m *CreateApplicationResponse) String() string { return proto.CompactTextString(m) }
func (*CreateApplicationResponse) ProtoMessage() {}
func (*CreateApplicationResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_0774996cc1ba5bfc, []int{4}
}
func (m *CreateApplicationResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CreateApplicationResponse.Unmarshal(m, b)
}
func (m *CreateApplicationResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_CreateApplicationResponse.Marshal(b, m, deterministic)
}
func (m *CreateApplicationResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_CreateApplicationResponse.Merge(m, src)
}
func (m *CreateApplicationResponse) XXX_Size() int {
return xxx_messageInfo_CreateApplicationResponse.Size(m)
}
func (m *CreateApplicationResponse) XXX_DiscardUnknown() {
xxx_messageInfo_CreateApplicationResponse.DiscardUnknown(m)
}
var xxx_messageInfo_CreateApplicationResponse proto.InternalMessageInfo
func (m *CreateApplicationResponse) GetId() int64 {
if m != nil {
return m.Id
}
return 0
}
type GetApplicationRequest struct {
// Application ID.
Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GetApplicationRequest) Reset() { *m = GetApplicationRequest{} }
func (m *GetApplicationRequest) String() string { return proto.CompactTextString(m) }
func (*GetApplicationRequest) ProtoMessage() {}
func (*GetApplicationRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_0774996cc1ba5bfc, []int{5}
}
func (m *GetApplicationRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetApplicationRequest.Unmarshal(m, b)
}
func (m *GetApplicationRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetApplicationRequest.Marshal(b, m, deterministic)
}
func (m *GetApplicationRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetApplicationRequest.Merge(m, src)
}
func (m *GetApplicationRequest) XXX_Size() int {
return xxx_messageInfo_GetApplicationRequest.Size(m)
}
func (m *GetApplicationRequest) XXX_DiscardUnknown() {
xxx_messageInfo_GetApplicationRequest.DiscardUnknown(m)
}
var xxx_messageInfo_GetApplicationRequest proto.InternalMessageInfo
func (m *GetApplicationRequest) GetId() int64 {
if m != nil {
return m.Id
}
return 0
}
type GetApplicationResponse struct {
// Application object.
Application *Application `protobuf:"bytes,1,opt,name=application,proto3" json:"application,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GetApplicationResponse) Reset() { *m = GetApplicationResponse{} }
func (m *GetApplicationResponse) String() string { return proto.CompactTextString(m) }
func (*GetApplicationResponse) ProtoMessage() {}
func (*GetApplicationResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_0774996cc1ba5bfc, []int{6}
}
func (m *GetApplicationResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetApplicationResponse.Unmarshal(m, b)
}
func (m *GetApplicationResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetApplicationResponse.Marshal(b, m, deterministic)
}
func (m *GetApplicationResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetApplicationResponse.Merge(m, src)
}
func (m *GetApplicationResponse) XXX_Size() int {
return xxx_messageInfo_GetApplicationResponse.Size(m)
}
func (m *GetApplicationResponse) XXX_DiscardUnknown() {
xxx_messageInfo_GetApplicationResponse.DiscardUnknown(m)
}
var xxx_messageInfo_GetApplicationResponse proto.InternalMessageInfo
func (m *GetApplicationResponse) GetApplication() *Application {
if m != nil {
return m.Application
}
return nil
}
type UpdateApplicationRequest struct {
// Application object to update.
Application *Application `protobuf:"bytes,1,opt,name=application,proto3" json:"application,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *UpdateApplicationRequest) Reset() { *m = UpdateApplicationRequest{} }
func (m *UpdateApplicationRequest) String() string { return proto.CompactTextString(m) }
func (*UpdateApplicationRequest) ProtoMessage() {}
func (*UpdateApplicationRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_0774996cc1ba5bfc, []int{7}
}
func (m *UpdateApplicationRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_UpdateApplicationRequest.Unmarshal(m, b)
}
func (m *UpdateApplicationRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_UpdateApplicationRequest.Marshal(b, m, deterministic)
}
func (m *UpdateApplicationRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_UpdateApplicationRequest.Merge(m, src)
}
func (m *UpdateApplicationRequest) XXX_Size() int {
return xxx_messageInfo_UpdateApplicationRequest.Size(m)
}
func (m *UpdateApplicationRequest) XXX_DiscardUnknown() {
xxx_messageInfo_UpdateApplicationRequest.DiscardUnknown(m)
}
var xxx_messageInfo_UpdateApplicationRequest proto.InternalMessageInfo
func (m *UpdateApplicationRequest) GetApplication() *Application {
if m != nil {
return m.Application
}
return nil
}
type DeleteApplicationRequest struct {
// Application ID.
Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *DeleteApplicationRequest) Reset() { *m = DeleteApplicationRequest{} }
func (m *DeleteApplicationRequest) String() string { return proto.CompactTextString(m) }
func (*DeleteApplicationRequest) ProtoMessage() {}
func (*DeleteApplicationRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_0774996cc1ba5bfc, []int{8}
}
func (m *DeleteApplicationRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_DeleteApplicationRequest.Unmarshal(m, b)
}
func (m *DeleteApplicationRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_DeleteApplicationRequest.Marshal(b, m, deterministic)
}
func (m *DeleteApplicationRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_DeleteApplicationRequest.Merge(m, src)
}
func (m *DeleteApplicationRequest) XXX_Size() int {
return xxx_messageInfo_DeleteApplicationRequest.Size(m)
}
func (m *DeleteApplicationRequest) XXX_DiscardUnknown() {
xxx_messageInfo_DeleteApplicationRequest.DiscardUnknown(m)
}
var xxx_messageInfo_DeleteApplicationRequest proto.InternalMessageInfo
func (m *DeleteApplicationRequest) GetId() int64 {
if m != nil {
return m.Id
}
return 0
}
type ListApplicationRequest struct {
// Max number of applications to return in the result-test.
Limit int64 `protobuf:"varint,1,opt,name=limit,proto3" json:"limit,omitempty"`
// Offset in the result-set (for pagination).
Offset int64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset,omitempty"`
// ID of the organization to filter on.
OrganizationId int64 `protobuf:"varint,3,opt,name=organization_id,json=organizationID,proto3" json:"organization_id,omitempty"`
// Search on name (optional).
Search string `protobuf:"bytes,4,opt,name=search,proto3" json:"search,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *ListApplicationRequest) Reset() { *m = ListApplicationRequest{} }
func (m *ListApplicationRequest) String() string { return proto.CompactTextString(m) }
func (*ListApplicationRequest) ProtoMessage() {}
func (*ListApplicationRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_0774996cc1ba5bfc, []int{9}
}
func (m *ListApplicationRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ListApplicationRequest.Unmarshal(m, b)
}
func (m *ListApplicationRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_ListApplicationRequest.Marshal(b, m, deterministic)
}
func (m *ListApplicationRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_ListApplicationRequest.Merge(m, src)
}
func (m *ListApplicationRequest) XXX_Size() int {
return xxx_messageInfo_ListApplicationRequest.Size(m)
}
func (m *ListApplicationRequest) XXX_DiscardUnknown() {
xxx_messageInfo_ListApplicationRequest.DiscardUnknown(m)
}
var xxx_messageInfo_ListApplicationRequest proto.InternalMessageInfo
func (m *ListApplicationRequest) GetLimit() int64 {
if m != nil {
return m.Limit
}
return 0
}
func (m *ListApplicationRequest) GetOffset() int64 {
if m != nil {
return m.Offset
}
return 0
}
func (m *ListApplicationRequest) GetOrganizationId() int64 {
if m != nil {
return m.OrganizationId
}
return 0
}
func (m *ListApplicationRequest) GetSearch() string {
if m != nil {
return m.Search
}
return ""
}
type ListApplicationResponse struct {
// Total number of applications available within the result-set.
TotalCount int64 `protobuf:"varint,1,opt,name=total_count,json=totalCount,proto3" json:"total_count,omitempty"`
// Applications within this result-set.
Result []*ApplicationListItem `protobuf:"bytes,2,rep,name=result,proto3" json:"result,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *ListApplicationResponse) Reset() { *m = ListApplicationResponse{} }
func (m *ListApplicationResponse) String() string { return proto.CompactTextString(m) }
func (*ListApplicationResponse) ProtoMessage() {}
func (*ListApplicationResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_0774996cc1ba5bfc, []int{10}
}
func (m *ListApplicationResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ListApplicationResponse.Unmarshal(m, b)
}
func (m *ListApplicationResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_ListApplicationResponse.Marshal(b, m, deterministic)
}
func (m *ListApplicationResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_ListApplicationResponse.Merge(m, src)
}
func (m *ListApplicationResponse) XXX_Size() int {
return xxx_messageInfo_ListApplicationResponse.Size(m)
}
func (m *ListApplicationResponse) XXX_DiscardUnknown() {
xxx_messageInfo_ListApplicationResponse.DiscardUnknown(m)
}
var xxx_messageInfo_ListApplicationResponse proto.InternalMessageInfo
func (m *ListApplicationResponse) GetTotalCount() int64 {
if m != nil {
return m.TotalCount
}
return 0
}
func (m *ListApplicationResponse) GetResult() []*ApplicationListItem {
if m != nil {
return m.Result
}
return nil
}
type HTTPIntegrationHeader struct {
// Key
Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
// Value
Value string `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *HTTPIntegrationHeader) Reset() { *m = HTTPIntegrationHeader{} }
func (m *HTTPIntegrationHeader) String() string { return proto.CompactTextString(m) }
func (*HTTPIntegrationHeader) ProtoMessage() {}
func (*HTTPIntegrationHeader) Descriptor() ([]byte, []int) {
return fileDescriptor_0774996cc1ba5bfc, []int{11}
}
func (m *HTTPIntegrationHeader) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_HTTPIntegrationHeader.Unmarshal(m, b)
}
func (m *HTTPIntegrationHeader) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_HTTPIntegrationHeader.Marshal(b, m, deterministic)
}
func (m *HTTPIntegrationHeader) XXX_Merge(src proto.Message) {
xxx_messageInfo_HTTPIntegrationHeader.Merge(m, src)
}
func (m *HTTPIntegrationHeader) XXX_Size() int {
return xxx_messageInfo_HTTPIntegrationHeader.Size(m)
}
func (m *HTTPIntegrationHeader) XXX_DiscardUnknown() {
xxx_messageInfo_HTTPIntegrationHeader.DiscardUnknown(m)
}
var xxx_messageInfo_HTTPIntegrationHeader proto.InternalMessageInfo
func (m *HTTPIntegrationHeader) GetKey() string {
if m != nil {
return m.Key
}
return ""
}
func (m *HTTPIntegrationHeader) GetValue() string {
if m != nil {
return m.Value
}
return ""
}
type HTTPIntegration struct {
// The id of the application.
ApplicationId int64 `protobuf:"varint,1,opt,name=application_id,json=applicationID,proto3" json:"application_id,omitempty"`
// The headers to use when making HTTP callbacks.
Headers []*HTTPIntegrationHeader `protobuf:"bytes,2,rep,name=headers,proto3" json:"headers,omitempty"`
// The URL to call for uplink data.
// Deprecated: use event_endpoint_url.
UplinkDataUrl string `protobuf:"bytes,3,opt,name=uplink_data_url,json=uplinkDataURL,proto3" json:"uplink_data_url,omitempty"`
// The URL to call for join notifications.
// Deprecated: use event_endpoint_url.
JoinNotificationUrl string `protobuf:"bytes,4,opt,name=join_notification_url,json=joinNotificationURL,proto3" json:"join_notification_url,omitempty"`
// The URL to call for ACK notifications (for confirmed downlink data).
// Deprecated: use event_endpoint_url.
AckNotificationUrl string `protobuf:"bytes,5,opt,name=ack_notification_url,json=ackNotificationURL,proto3" json:"ack_notification_url,omitempty"`
// The URL to call for error notifications.
// Deprecated: use event_endpoint_url.
ErrorNotificationUrl string `protobuf:"bytes,6,opt,name=error_notification_url,json=errorNotificationURL,proto3" json:"error_notification_url,omitempty"`
// The URL to call for device-status notifications.
// Deprecated: use event_endpoint_url.
StatusNotificationUrl string `protobuf:"bytes,7,opt,name=status_notification_url,json=statusNotificationURL,proto3" json:"status_notification_url,omitempty"`
// The URL to call for location notifications.
// Deprecated: use event_endpoint_url.
LocationNotificationUrl string `protobuf:"bytes,8,opt,name=location_notification_url,json=locationNotificationURL,proto3" json:"location_notification_url,omitempty"`
// The URL to call for tx ack notifications (downlink acknowledged by gateway for transmission).
// Deprecated: use event_endpoint_url.
TxAckNotificationUrl string `protobuf:"bytes,9,opt,name=tx_ack_notification_url,json=txAckNotificationURL,proto3" json:"tx_ack_notification_url,omitempty"`
// The URL to call for integration notifications.
// Deprecated: use event_endpoint_url.
IntegrationNotificationUrl string `protobuf:"bytes,10,opt,name=integration_notification_url,json=integrationNotificationURL,proto3" json:"integration_notification_url,omitempty"`
// Marshaler.
// This defines the marshaler that is used to encode the event payload.
Marshaler Marshaler `protobuf:"varint,11,opt,name=marshaler,proto3,enum=api.Marshaler" json:"marshaler,omitempty"`
// Event endpoint URL.
// The HTTP integration will POST all events to this enpoint. The request
// will contain a query parameters "event" containing the type of the
// event.
EventEndpointUrl string `protobuf:"bytes,12,opt,name=event_endpoint_url,json=eventEndpointURL,proto3" json:"event_endpoint_url,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *HTTPIntegration) Reset() { *m = HTTPIntegration{} }
func (m *HTTPIntegration) String() string { return proto.CompactTextString(m) }
func (*HTTPIntegration) ProtoMessage() {}
func (*HTTPIntegration) Descriptor() ([]byte, []int) {
return fileDescriptor_0774996cc1ba5bfc, []int{12}
}
func (m *HTTPIntegration) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_HTTPIntegration.Unmarshal(m, b)
}
func (m *HTTPIntegration) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_HTTPIntegration.Marshal(b, m, deterministic)
}
func (m *HTTPIntegration) XXX_Merge(src proto.Message) {
xxx_messageInfo_HTTPIntegration.Merge(m, src)
}
func (m *HTTPIntegration) XXX_Size() int {
return xxx_messageInfo_HTTPIntegration.Size(m)
}
func (m *HTTPIntegration) XXX_DiscardUnknown() {
xxx_messageInfo_HTTPIntegration.DiscardUnknown(m)
}
var xxx_messageInfo_HTTPIntegration proto.InternalMessageInfo
func (m *HTTPIntegration) GetApplicationId() int64 {
if m != nil {
return m.ApplicationId
}
return 0
}
func (m *HTTPIntegration) GetHeaders() []*HTTPIntegrationHeader {
if m != nil {
return m.Headers
}
return nil
}
func (m *HTTPIntegration) GetUplinkDataUrl() string {
if m != nil {
return m.UplinkDataUrl
}
return ""
}
func (m *HTTPIntegration) GetJoinNotificationUrl() string {
if m != nil {
return m.JoinNotificationUrl
}
return ""
}
func (m *HTTPIntegration) GetAckNotificationUrl() string {
if m != nil {
return m.AckNotificationUrl
}
return ""
}
func (m *HTTPIntegration) GetErrorNotificationUrl() string {
if m != nil {
return m.ErrorNotificationUrl
}
return ""
}
func (m *HTTPIntegration) GetStatusNotificationUrl() string {
if m != nil {
return m.StatusNotificationUrl
}
return ""
}
func (m *HTTPIntegration) GetLocationNotificationUrl() string {
if m != nil {
return m.LocationNotificationUrl
}
return ""
}
func (m *HTTPIntegration) GetTxAckNotificationUrl() string {
if m != nil {
return m.TxAckNotificationUrl
}
return ""
}
func (m *HTTPIntegration) GetIntegrationNotificationUrl() string {
if m != nil {
return m.IntegrationNotificationUrl
}
return ""
}
func (m *HTTPIntegration) GetMarshaler() Marshaler {
if m != nil {
return m.Marshaler
}
return Marshaler_JSON
}
func (m *HTTPIntegration) GetEventEndpointUrl() string {
if m != nil {
return m.EventEndpointUrl
}
return ""
}
type CreateHTTPIntegrationRequest struct {
// Integration object to create.
Integration *HTTPIntegration `protobuf:"bytes,1,opt,name=integration,proto3" json:"integration,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *CreateHTTPIntegrationRequest) Reset() { *m = CreateHTTPIntegrationRequest{} }
func (m *CreateHTTPIntegrationRequest) String() string { return proto.CompactTextString(m) }
func (*CreateHTTPIntegrationRequest) ProtoMessage() {}
func (*CreateHTTPIntegrationRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_0774996cc1ba5bfc, []int{13}
}
func (m *CreateHTTPIntegrationRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CreateHTTPIntegrationRequest.Unmarshal(m, b)
}
func (m *CreateHTTPIntegrationRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_CreateHTTPIntegrationRequest.Marshal(b, m, deterministic)
}
func (m *CreateHTTPIntegrationRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_CreateHTTPIntegrationRequest.Merge(m, src)
}
func (m *CreateHTTPIntegrationRequest) XXX_Size() int {
return xxx_messageInfo_CreateHTTPIntegrationRequest.Size(m)
}
func (m *CreateHTTPIntegrationRequest) XXX_DiscardUnknown() {
xxx_messageInfo_CreateHTTPIntegrationRequest.DiscardUnknown(m)
}
var xxx_messageInfo_CreateHTTPIntegrationRequest proto.InternalMessageInfo
func (m *CreateHTTPIntegrationRequest) GetIntegration() *HTTPIntegration {
if m != nil {
return m.Integration
}
return nil
}
type GetHTTPIntegrationRequest struct {
// Application ID.
ApplicationId int64 `protobuf:"varint,1,opt,name=application_id,json=applicationID,proto3" json:"application_id,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GetHTTPIntegrationRequest) Reset() { *m = GetHTTPIntegrationRequest{} }
func (m *GetHTTPIntegrationRequest) String() string { return proto.CompactTextString(m) }
func (*GetHTTPIntegrationRequest) ProtoMessage() {}
func (*GetHTTPIntegrationRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_0774996cc1ba5bfc, []int{14}
}
func (m *GetHTTPIntegrationRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetHTTPIntegrationRequest.Unmarshal(m, b)
}
func (m *GetHTTPIntegrationRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetHTTPIntegrationRequest.Marshal(b, m, deterministic)
}
func (m *GetHTTPIntegrationRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetHTTPIntegrationRequest.Merge(m, src)
}
func (m *GetHTTPIntegrationRequest) XXX_Size() int {
return xxx_messageInfo_GetHTTPIntegrationRequest.Size(m)
}
func (m *GetHTTPIntegrationRequest) XXX_DiscardUnknown() {
xxx_messageInfo_GetHTTPIntegrationRequest.DiscardUnknown(m)
}
var xxx_messageInfo_GetHTTPIntegrationRequest proto.InternalMessageInfo
func (m *GetHTTPIntegrationRequest) GetApplicationId() int64 {
if m != nil {
return m.ApplicationId
}
return 0
}
type GetHTTPIntegrationResponse struct {
// Integration object.
Integration *HTTPIntegration `protobuf:"bytes,1,opt,name=integration,proto3" json:"integration,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GetHTTPIntegrationResponse) Reset() { *m = GetHTTPIntegrationResponse{} }
func (m *GetHTTPIntegrationResponse) String() string { return proto.CompactTextString(m) }
func (*GetHTTPIntegrationResponse) ProtoMessage() {}
func (*GetHTTPIntegrationResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_0774996cc1ba5bfc, []int{15}
}
func (m *GetHTTPIntegrationResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetHTTPIntegrationResponse.Unmarshal(m, b)
}
func (m *GetHTTPIntegrationResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetHTTPIntegrationResponse.Marshal(b, m, deterministic)
}
func (m *GetHTTPIntegrationResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetHTTPIntegrationResponse.Merge(m, src)
}
func (m *GetHTTPIntegrationResponse) XXX_Size() int {
return xxx_messageInfo_GetHTTPIntegrationResponse.Size(m)
}
func (m *GetHTTPIntegrationResponse) XXX_DiscardUnknown() {
xxx_messageInfo_GetHTTPIntegrationResponse.DiscardUnknown(m)
}
var xxx_messageInfo_GetHTTPIntegrationResponse proto.InternalMessageInfo
func (m *GetHTTPIntegrationResponse) GetIntegration() *HTTPIntegration {
if m != nil {
return m.Integration
}
return nil
}
type UpdateHTTPIntegrationRequest struct {
// Integration object to update.
Integration *HTTPIntegration `protobuf:"bytes,1,opt,name=integration,proto3" json:"integration,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *UpdateHTTPIntegrationRequest) Reset() { *m = UpdateHTTPIntegrationRequest{} }
func (m *UpdateHTTPIntegrationRequest) String() string { return proto.CompactTextString(m) }
func (*UpdateHTTPIntegrationRequest) ProtoMessage() {}
func (*UpdateHTTPIntegrationRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_0774996cc1ba5bfc, []int{16}
}
func (m *UpdateHTTPIntegrationRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_UpdateHTTPIntegrationRequest.Unmarshal(m, b)
}
func (m *UpdateHTTPIntegrationRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_UpdateHTTPIntegrationRequest.Marshal(b, m, deterministic)
}
func (m *UpdateHTTPIntegrationRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_UpdateHTTPIntegrationRequest.Merge(m, src)
}
func (m *UpdateHTTPIntegrationRequest) XXX_Size() int {
return xxx_messageInfo_UpdateHTTPIntegrationRequest.Size(m)
}
func (m *UpdateHTTPIntegrationRequest) XXX_DiscardUnknown() {
xxx_messageInfo_UpdateHTTPIntegrationRequest.DiscardUnknown(m)
}
var xxx_messageInfo_UpdateHTTPIntegrationRequest proto.InternalMessageInfo
func (m *UpdateHTTPIntegrationRequest) GetIntegration() *HTTPIntegration {
if m != nil {
return m.Integration
}
return nil
}
type DeleteHTTPIntegrationRequest struct {
// The id of the application.
ApplicationId int64 `protobuf:"varint,1,opt,name=application_id,json=applicationID,proto3" json:"application_id,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *DeleteHTTPIntegrationRequest) Reset() { *m = DeleteHTTPIntegrationRequest{} }
func (m *DeleteHTTPIntegrationRequest) String() string { return proto.CompactTextString(m) }
func (*DeleteHTTPIntegrationRequest) ProtoMessage() {}
func (*DeleteHTTPIntegrationRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_0774996cc1ba5bfc, []int{17}
}
func (m *DeleteHTTPIntegrationRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_DeleteHTTPIntegrationRequest.Unmarshal(m, b)
}
func (m *DeleteHTTPIntegrationRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_DeleteHTTPIntegrationRequest.Marshal(b, m, deterministic)
}
func (m *DeleteHTTPIntegrationRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_DeleteHTTPIntegrationRequest.Merge(m, src)
}
func (m *DeleteHTTPIntegrationRequest) XXX_Size() int {
return xxx_messageInfo_DeleteHTTPIntegrationRequest.Size(m)
}
func (m *DeleteHTTPIntegrationRequest) XXX_DiscardUnknown() {
xxx_messageInfo_DeleteHTTPIntegrationRequest.DiscardUnknown(m)
}
var xxx_messageInfo_DeleteHTTPIntegrationRequest proto.InternalMessageInfo
func (m *DeleteHTTPIntegrationRequest) GetApplicationId() int64 {
if m != nil {
return m.ApplicationId
}
return 0
}
type ListIntegrationRequest struct {
// The id of the application.
ApplicationId int64 `protobuf:"varint,1,opt,name=application_id,json=applicationID,proto3" json:"application_id,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *ListIntegrationRequest) Reset() { *m = ListIntegrationRequest{} }
func (m *ListIntegrationRequest) String() string { return proto.CompactTextString(m) }
func (*ListIntegrationRequest) ProtoMessage() {}
func (*ListIntegrationRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_0774996cc1ba5bfc, []int{18}
}
func (m *ListIntegrationRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ListIntegrationRequest.Unmarshal(m, b)
}
func (m *ListIntegrationRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_ListIntegrationRequest.Marshal(b, m, deterministic)
}
func (m *ListIntegrationRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_ListIntegrationRequest.Merge(m, src)
}
func (m *ListIntegrationRequest) XXX_Size() int {
return xxx_messageInfo_ListIntegrationRequest.Size(m)
}
func (m *ListIntegrationRequest) XXX_DiscardUnknown() {
xxx_messageInfo_ListIntegrationRequest.DiscardUnknown(m)
}
var xxx_messageInfo_ListIntegrationRequest proto.InternalMessageInfo
func (m *ListIntegrationRequest) GetApplicationId() int64 {
if m != nil {
return m.ApplicationId
}
return 0
}
type IntegrationListItem struct {
// Integration kind.
Kind IntegrationKind `protobuf:"varint,1,opt,name=kind,proto3,enum=api.IntegrationKind" json:"kind,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *IntegrationListItem) Reset() { *m = IntegrationListItem{} }
func (m *IntegrationListItem) String() string { return proto.CompactTextString(m) }
func (*IntegrationListItem) ProtoMessage() {}
func (*IntegrationListItem) Descriptor() ([]byte, []int) {
return fileDescriptor_0774996cc1ba5bfc, []int{19}
}
func (m *IntegrationListItem) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_IntegrationListItem.Unmarshal(m, b)
}
func (m *IntegrationListItem) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_IntegrationListItem.Marshal(b, m, deterministic)
}
func (m *IntegrationListItem) XXX_Merge(src proto.Message) {
xxx_messageInfo_IntegrationListItem.Merge(m, src)
}
func (m *IntegrationListItem) XXX_Size() int {
return xxx_messageInfo_IntegrationListItem.Size(m)
}
func (m *IntegrationListItem) XXX_DiscardUnknown() {
xxx_messageInfo_IntegrationListItem.DiscardUnknown(m)
}
var xxx_messageInfo_IntegrationListItem proto.InternalMessageInfo
func (m *IntegrationListItem) GetKind() IntegrationKind {
if m != nil {
return m.Kind
}
return IntegrationKind_HTTP
}
type ListIntegrationResponse struct {
// Total number of integrations available within the result-set.
TotalCount int64 `protobuf:"varint,1,opt,name=total_count,json=totalCount,proto3" json:"total_count,omitempty"`
// Integrations within result-set.
Result []*IntegrationListItem `protobuf:"bytes,2,rep,name=result,proto3" json:"result,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *ListIntegrationResponse) Reset() { *m = ListIntegrationResponse{} }
func (m *ListIntegrationResponse) String() string { return proto.CompactTextString(m) }
func (*ListIntegrationResponse) ProtoMessage() {}
func (*ListIntegrationResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_0774996cc1ba5bfc, []int{20}
}
func (m *ListIntegrationResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ListIntegrationResponse.Unmarshal(m, b)
}
func (m *ListIntegrationResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_ListIntegrationResponse.Marshal(b, m, deterministic)
}
func (m *ListIntegrationResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_ListIntegrationResponse.Merge(m, src)
}
func (m *ListIntegrationResponse) XXX_Size() int {
return xxx_messageInfo_ListIntegrationResponse.Size(m)
}
func (m *ListIntegrationResponse) XXX_DiscardUnknown() {
xxx_messageInfo_ListIntegrationResponse.DiscardUnknown(m)
}
var xxx_messageInfo_ListIntegrationResponse proto.InternalMessageInfo
func (m *ListIntegrationResponse) GetTotalCount() int64 {
if m != nil {
return m.TotalCount
}
return 0
}
func (m *ListIntegrationResponse) GetResult() []*IntegrationListItem {
if m != nil {
return m.Result
}
return nil
}
type InfluxDBIntegration struct {
// Application ID.
ApplicationId int64 `protobuf:"varint,1,opt,name=application_id,json=applicationID,proto3" json:"application_id,omitempty"`
// InfluxDB API write endpoint (e.g. http://localhost:8086/write).
Endpoint string `protobuf:"bytes,2,opt,name=endpoint,proto3" json:"endpoint,omitempty"`
// InfluxDB database name.
Db string `protobuf:"bytes,3,opt,name=db,proto3" json:"db,omitempty"`
// InfluxDB username.
Username string `protobuf:"bytes,4,opt,name=username,proto3" json:"username,omitempty"`
// InfluxDB password.
Password string `protobuf:"bytes,5,opt,name=password,proto3" json:"password,omitempty"`
// InfluxDB retention policy name.
RetentionPolicyName string `protobuf:"bytes,6,opt,name=retention_policy_name,json=retentionPolicyName,proto3" json:"retention_policy_name,omitempty"`
// InfluxDB timestamp precision.
Precision InfluxDBPrecision `protobuf:"varint,7,opt,name=precision,proto3,enum=api.InfluxDBPrecision" json:"precision,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *InfluxDBIntegration) Reset() { *m = InfluxDBIntegration{} }
func (m *InfluxDBIntegration) String() string { return proto.CompactTextString(m) }
func (*InfluxDBIntegration) ProtoMessage() {}
func (*InfluxDBIntegration) Descriptor() ([]byte, []int) {
return fileDescriptor_0774996cc1ba5bfc, []int{21}
}
func (m *InfluxDBIntegration) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_InfluxDBIntegration.Unmarshal(m, b)
}
func (m *InfluxDBIntegration) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_InfluxDBIntegration.Marshal(b, m, deterministic)
}
func (m *InfluxDBIntegration) XXX_Merge(src proto.Message) {
xxx_messageInfo_InfluxDBIntegration.Merge(m, src)
}
func (m *InfluxDBIntegration) XXX_Size() int {
return xxx_messageInfo_InfluxDBIntegration.Size(m)
}
func (m *InfluxDBIntegration) XXX_DiscardUnknown() {
xxx_messageInfo_InfluxDBIntegration.DiscardUnknown(m)
}
var xxx_messageInfo_InfluxDBIntegration proto.InternalMessageInfo
func (m *InfluxDBIntegration) GetApplicationId() int64 {
if m != nil {
return m.ApplicationId
}
return 0
}
func (m *InfluxDBIntegration) GetEndpoint() string {
if m != nil {
return m.Endpoint
}
return ""
}
func (m *InfluxDBIntegration) GetDb() string {
if m != nil {
return m.Db
}
return ""
}
func (m *InfluxDBIntegration) GetUsername() string {
if m != nil {
return m.Username
}
return ""
}
func (m *InfluxDBIntegration) GetPassword() string {
if m != nil {
return m.Password
}
return ""
}
func (m *InfluxDBIntegration) GetRetentionPolicyName() string {
if m != nil {
return m.RetentionPolicyName
}
return ""
}
func (m *InfluxDBIntegration) GetPrecision() InfluxDBPrecision {
if m != nil {
return m.Precision
}
return InfluxDBPrecision_NS
}
type CreateInfluxDBIntegrationRequest struct {
// Integration object to create.
Integration *InfluxDBIntegration `protobuf:"bytes,1,opt,name=integration,proto3" json:"integration,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *CreateInfluxDBIntegrationRequest) Reset() { *m = CreateInfluxDBIntegrationRequest{} }
func (m *CreateInfluxDBIntegrationRequest) String() string { return proto.CompactTextString(m) }
func (*CreateInfluxDBIntegrationRequest) ProtoMessage() {}
func (*CreateInfluxDBIntegrationRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_0774996cc1ba5bfc, []int{22}
}
func (m *CreateInfluxDBIntegrationRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CreateInfluxDBIntegrationRequest.Unmarshal(m, b)
}
func (m *CreateInfluxDBIntegrationRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_CreateInfluxDBIntegrationRequest.Marshal(b, m, deterministic)
}
func (m *CreateInfluxDBIntegrationRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_CreateInfluxDBIntegrationRequest.Merge(m, src)
}
func (m *CreateInfluxDBIntegrationRequest) XXX_Size() int {
return xxx_messageInfo_CreateInfluxDBIntegrationRequest.Size(m)
}
func (m *CreateInfluxDBIntegrationRequest) XXX_DiscardUnknown() {
xxx_messageInfo_CreateInfluxDBIntegrationRequest.DiscardUnknown(m)
}
var xxx_messageInfo_CreateInfluxDBIntegrationRequest proto.InternalMessageInfo
func (m *CreateInfluxDBIntegrationRequest) GetIntegration() *InfluxDBIntegration {
if m != nil {
return m.Integration
}
return nil
}
type GetInfluxDBIntegrationRequest struct {
// Application ID.
ApplicationId int64 `protobuf:"varint,1,opt,name=application_id,json=applicationID,proto3" json:"application_id,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GetInfluxDBIntegrationRequest) Reset() { *m = GetInfluxDBIntegrationRequest{} }
func (m *GetInfluxDBIntegrationRequest) String() string { return proto.CompactTextString(m) }
func (*GetInfluxDBIntegrationRequest) ProtoMessage() {}
func (*GetInfluxDBIntegrationRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_0774996cc1ba5bfc, []int{23}
}
func (m *GetInfluxDBIntegrationRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetInfluxDBIntegrationRequest.Unmarshal(m, b)
}
func (m *GetInfluxDBIntegrationRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetInfluxDBIntegrationRequest.Marshal(b, m, deterministic)
}
func (m *GetInfluxDBIntegrationRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetInfluxDBIntegrationRequest.Merge(m, src)
}
func (m *GetInfluxDBIntegrationRequest) XXX_Size() int {
return xxx_messageInfo_GetInfluxDBIntegrationRequest.Size(m)
}
func (m *GetInfluxDBIntegrationRequest) XXX_DiscardUnknown() {
xxx_messageInfo_GetInfluxDBIntegrationRequest.DiscardUnknown(m)
}
var xxx_messageInfo_GetInfluxDBIntegrationRequest proto.InternalMessageInfo
func (m *GetInfluxDBIntegrationRequest) GetApplicationId() int64 {
if m != nil {
return m.ApplicationId
}
return 0
}
type GetInfluxDBIntegrationResponse struct {
// Integration object.
Integration *InfluxDBIntegration `protobuf:"bytes,1,opt,name=integration,proto3" json:"integration,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GetInfluxDBIntegrationResponse) Reset() { *m = GetInfluxDBIntegrationResponse{} }
func (m *GetInfluxDBIntegrationResponse) String() string { return proto.CompactTextString(m) }
func (*GetInfluxDBIntegrationResponse) ProtoMessage() {}
func (*GetInfluxDBIntegrationResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_0774996cc1ba5bfc, []int{24}
}
func (m *GetInfluxDBIntegrationResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetInfluxDBIntegrationResponse.Unmarshal(m, b)
}
func (m *GetInfluxDBIntegrationResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetInfluxDBIntegrationResponse.Marshal(b, m, deterministic)
}
func (m *GetInfluxDBIntegrationResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetInfluxDBIntegrationResponse.Merge(m, src)
}
func (m *GetInfluxDBIntegrationResponse) XXX_Size() int {
return xxx_messageInfo_GetInfluxDBIntegrationResponse.Size(m)
}
func (m *GetInfluxDBIntegrationResponse) XXX_DiscardUnknown() {
xxx_messageInfo_GetInfluxDBIntegrationResponse.DiscardUnknown(m)
}
var xxx_messageInfo_GetInfluxDBIntegrationResponse proto.InternalMessageInfo
func (m *GetInfluxDBIntegrationResponse) GetIntegration() *InfluxDBIntegration {
if m != nil {
return m.Integration
}
return nil
}
type UpdateInfluxDBIntegrationRequest struct {
// Integration object.
Integration *InfluxDBIntegration `protobuf:"bytes,1,opt,name=integration,proto3" json:"integration,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *UpdateInfluxDBIntegrationRequest) Reset() { *m = UpdateInfluxDBIntegrationRequest{} }
func (m *UpdateInfluxDBIntegrationRequest) String() string { return proto.CompactTextString(m) }
func (*UpdateInfluxDBIntegrationRequest) ProtoMessage() {}
func (*UpdateInfluxDBIntegrationRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_0774996cc1ba5bfc, []int{25}
}
func (m *UpdateInfluxDBIntegrationRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_UpdateInfluxDBIntegrationRequest.Unmarshal(m, b)
}
func (m *UpdateInfluxDBIntegrationRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_UpdateInfluxDBIntegrationRequest.Marshal(b, m, deterministic)
}
func (m *UpdateInfluxDBIntegrationRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_UpdateInfluxDBIntegrationRequest.Merge(m, src)
}
func (m *UpdateInfluxDBIntegrationRequest) XXX_Size() int {
return xxx_messageInfo_UpdateInfluxDBIntegrationRequest.Size(m)
}
func (m *UpdateInfluxDBIntegrationRequest) XXX_DiscardUnknown() {
xxx_messageInfo_UpdateInfluxDBIntegrationRequest.DiscardUnknown(m)
}
var xxx_messageInfo_UpdateInfluxDBIntegrationRequest proto.InternalMessageInfo
func (m *UpdateInfluxDBIntegrationRequest) GetIntegration() *InfluxDBIntegration {
if m != nil {
return m.Integration
}
return nil
}
type DeleteInfluxDBIntegrationRequest struct {
// Application ID.
ApplicationId int64 `protobuf:"varint,1,opt,name=application_id,json=applicationID,proto3" json:"application_id,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *DeleteInfluxDBIntegrationRequest) Reset() { *m = DeleteInfluxDBIntegrationRequest{} }
func (m *DeleteInfluxDBIntegrationRequest) String() string { return proto.CompactTextString(m) }
func (*DeleteInfluxDBIntegrationRequest) ProtoMessage() {}
func (*DeleteInfluxDBIntegrationRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_0774996cc1ba5bfc, []int{26}
}
func (m *DeleteInfluxDBIntegrationRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_DeleteInfluxDBIntegrationRequest.Unmarshal(m, b)
}
func (m *DeleteInfluxDBIntegrationRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_DeleteInfluxDBIntegrationRequest.Marshal(b, m, deterministic)
}
func (m *DeleteInfluxDBIntegrationRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_DeleteInfluxDBIntegrationRequest.Merge(m, src)
}
func (m *DeleteInfluxDBIntegrationRequest) XXX_Size() int {
return xxx_messageInfo_DeleteInfluxDBIntegrationRequest.Size(m)
}
func (m *DeleteInfluxDBIntegrationRequest) XXX_DiscardUnknown() {
xxx_messageInfo_DeleteInfluxDBIntegrationRequest.DiscardUnknown(m)
}
var xxx_messageInfo_DeleteInfluxDBIntegrationRequest proto.InternalMessageInfo
func (m *DeleteInfluxDBIntegrationRequest) GetApplicationId() int64 {
if m != nil {
return m.ApplicationId
}
return 0
}
type ThingsBoardIntegration struct {
// Application ID.
ApplicationId int64 `protobuf:"varint,1,opt,name=application_id,json=applicationID,proto3" json:"application_id,omitempty"`
// ThingsBoard server endpoint, e.g. https://example.com
Server string `protobuf:"bytes,2,opt,name=server,proto3" json:"server,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *ThingsBoardIntegration) Reset() { *m = ThingsBoardIntegration{} }
func (m *ThingsBoardIntegration) String() string { return proto.CompactTextString(m) }
func (*ThingsBoardIntegration) ProtoMessage() {}
func (*ThingsBoardIntegration) Descriptor() ([]byte, []int) {
return fileDescriptor_0774996cc1ba5bfc, []int{27}
}
func (m *ThingsBoardIntegration) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ThingsBoardIntegration.Unmarshal(m, b)
}
func (m *ThingsBoardIntegration) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_ThingsBoardIntegration.Marshal(b, m, deterministic)
}
func (m *ThingsBoardIntegration) XXX_Merge(src proto.Message) {
xxx_messageInfo_ThingsBoardIntegration.Merge(m, src)
}
func (m *ThingsBoardIntegration) XXX_Size() int {
return xxx_messageInfo_ThingsBoardIntegration.Size(m)
}
func (m *ThingsBoardIntegration) XXX_DiscardUnknown() {
xxx_messageInfo_ThingsBoardIntegration.DiscardUnknown(m)
}
var xxx_messageInfo_ThingsBoardIntegration proto.InternalMessageInfo
func (m *ThingsBoardIntegration) GetApplicationId() int64 {
if m != nil {
return m.ApplicationId
}
return 0
}
func (m *ThingsBoardIntegration) GetServer() string {
if m != nil {
return m.Server
}
return ""
}
type CreateThingsBoardIntegrationRequest struct {
// Integration object to create.
Integration *ThingsBoardIntegration `protobuf:"bytes,1,opt,name=integration,proto3" json:"integration,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *CreateThingsBoardIntegrationRequest) Reset() { *m = CreateThingsBoardIntegrationRequest{} }
func (m *CreateThingsBoardIntegrationRequest) String() string { return proto.CompactTextString(m) }
func (*CreateThingsBoardIntegrationRequest) ProtoMessage() {}
func (*CreateThingsBoardIntegrationRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_0774996cc1ba5bfc, []int{28}
}
func (m *CreateThingsBoardIntegrationRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CreateThingsBoardIntegrationRequest.Unmarshal(m, b)
}
func (m *CreateThingsBoardIntegrationRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_CreateThingsBoardIntegrationRequest.Marshal(b, m, deterministic)
}
func (m *CreateThingsBoardIntegrationRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_CreateThingsBoardIntegrationRequest.Merge(m, src)
}
func (m *CreateThingsBoardIntegrationRequest) XXX_Size() int {
return xxx_messageInfo_CreateThingsBoardIntegrationRequest.Size(m)
}
func (m *CreateThingsBoardIntegrationRequest) XXX_DiscardUnknown() {
xxx_messageInfo_CreateThingsBoardIntegrationRequest.DiscardUnknown(m)
}
var xxx_messageInfo_CreateThingsBoardIntegrationRequest proto.InternalMessageInfo
func (m *CreateThingsBoardIntegrationRequest) GetIntegration() *ThingsBoardIntegration {
if m != nil {
return m.Integration
}
return nil
}
type GetThingsBoardIntegrationRequest struct {
// Application ID.
ApplicationId int64 `protobuf:"varint,1,opt,name=application_id,json=applicationID,proto3" json:"application_id,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GetThingsBoardIntegrationRequest) Reset() { *m = GetThingsBoardIntegrationRequest{} }
func (m *GetThingsBoardIntegrationRequest) String() string { return proto.CompactTextString(m) }
func (*GetThingsBoardIntegrationRequest) ProtoMessage() {}
func (*GetThingsBoardIntegrationRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_0774996cc1ba5bfc, []int{29}
}
func (m *GetThingsBoardIntegrationRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetThingsBoardIntegrationRequest.Unmarshal(m, b)
}
func (m *GetThingsBoardIntegrationRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetThingsBoardIntegrationRequest.Marshal(b, m, deterministic)
}
func (m *GetThingsBoardIntegrationRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetThingsBoardIntegrationRequest.Merge(m, src)
}
func (m *GetThingsBoardIntegrationRequest) XXX_Size() int {
return xxx_messageInfo_GetThingsBoardIntegrationRequest.Size(m)
}
func (m *GetThingsBoardIntegrationRequest) XXX_DiscardUnknown() {
xxx_messageInfo_GetThingsBoardIntegrationRequest.DiscardUnknown(m)
}
var xxx_messageInfo_GetThingsBoardIntegrationRequest proto.InternalMessageInfo
func (m *GetThingsBoardIntegrationRequest) GetApplicationId() int64 {
if m != nil {
return m.ApplicationId
}
return 0
}
type GetThingsBoardIntegrationResponse struct {
// Integration object.
Integration *ThingsBoardIntegration `protobuf:"bytes,1,opt,name=integration,proto3" json:"integration,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GetThingsBoardIntegrationResponse) Reset() { *m = GetThingsBoardIntegrationResponse{} }
func (m *GetThingsBoardIntegrationResponse) String() string { return proto.CompactTextString(m) }
func (*GetThingsBoardIntegrationResponse) ProtoMessage() {}
func (*GetThingsBoardIntegrationResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_0774996cc1ba5bfc, []int{30}
}
func (m *GetThingsBoardIntegrationResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetThingsBoardIntegrationResponse.Unmarshal(m, b)
}
func (m *GetThingsBoardIntegrationResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetThingsBoardIntegrationResponse.Marshal(b, m, deterministic)
}
func (m *GetThingsBoardIntegrationResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetThingsBoardIntegrationResponse.Merge(m, src)
}
func (m *GetThingsBoardIntegrationResponse) XXX_Size() int {
return xxx_messageInfo_GetThingsBoardIntegrationResponse.Size(m)
}
func (m *GetThingsBoardIntegrationResponse) XXX_DiscardUnknown() {
xxx_messageInfo_GetThingsBoardIntegrationResponse.DiscardUnknown(m)
}
var xxx_messageInfo_GetThingsBoardIntegrationResponse proto.InternalMessageInfo
func (m *GetThingsBoardIntegrationResponse) GetIntegration() *ThingsBoardIntegration {
if m != nil {
return m.Integration
}
return nil
}
type UpdateThingsBoardIntegrationRequest struct {
// Integration object.
Integration *ThingsBoardIntegration `protobuf:"bytes,1,opt,name=integration,proto3" json:"integration,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *UpdateThingsBoardIntegrationRequest) Reset() { *m = UpdateThingsBoardIntegrationRequest{} }
func (m *UpdateThingsBoardIntegrationRequest) String() string { return proto.CompactTextString(m) }
func (*UpdateThingsBoardIntegrationRequest) ProtoMessage() {}
func (*UpdateThingsBoardIntegrationRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_0774996cc1ba5bfc, []int{31}
}
func (m *UpdateThingsBoardIntegrationRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_UpdateThingsBoardIntegrationRequest.Unmarshal(m, b)
}
func (m *UpdateThingsBoardIntegrationRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_UpdateThingsBoardIntegrationRequest.Marshal(b, m, deterministic)
}
func (m *UpdateThingsBoardIntegrationRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_UpdateThingsBoardIntegrationRequest.Merge(m, src)
}
func (m *UpdateThingsBoardIntegrationRequest) XXX_Size() int {
return xxx_messageInfo_UpdateThingsBoardIntegrationRequest.Size(m)
}
func (m *UpdateThingsBoardIntegrationRequest) XXX_DiscardUnknown() {
xxx_messageInfo_UpdateThingsBoardIntegrationRequest.DiscardUnknown(m)
}
var xxx_messageInfo_UpdateThingsBoardIntegrationRequest proto.InternalMessageInfo
func (m *UpdateThingsBoardIntegrationRequest) GetIntegration() *ThingsBoardIntegration {
if m != nil {
return m.Integration
}
return nil
}
type DeleteThingsBoardIntegrationRequest struct {
// Application ID.
ApplicationId int64 `protobuf:"varint,1,opt,name=application_id,json=applicationID,proto3" json:"application_id,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *DeleteThingsBoardIntegrationRequest) Reset() { *m = DeleteThingsBoardIntegrationRequest{} }
func (m *DeleteThingsBoardIntegrationRequest) String() string { return proto.CompactTextString(m) }
func (*DeleteThingsBoardIntegrationRequest) ProtoMessage() {}
func (*DeleteThingsBoardIntegrationRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_0774996cc1ba5bfc, []int{32}
}
func (m *DeleteThingsBoardIntegrationRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_DeleteThingsBoardIntegrationRequest.Unmarshal(m, b)
}
func (m *DeleteThingsBoardIntegrationRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_DeleteThingsBoardIntegrationRequest.Marshal(b, m, deterministic)
}
func (m *DeleteThingsBoardIntegrationRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_DeleteThingsBoardIntegrationRequest.Merge(m, src)
}
func (m *DeleteThingsBoardIntegrationRequest) XXX_Size() int {
return xxx_messageInfo_DeleteThingsBoardIntegrationRequest.Size(m)
}
func (m *DeleteThingsBoardIntegrationRequest) XXX_DiscardUnknown() {
xxx_messageInfo_DeleteThingsBoardIntegrationRequest.DiscardUnknown(m)
}
var xxx_messageInfo_DeleteThingsBoardIntegrationRequest proto.InternalMessageInfo
func (m *DeleteThingsBoardIntegrationRequest) GetApplicationId() int64 {
if m != nil {
return m.ApplicationId
}
return 0
}
type MyDevicesIntegration struct {
// Application ID.
ApplicationId int64 `protobuf:"varint,1,opt,name=application_id,json=applicationID,proto3" json:"application_id,omitempty"`
// MyDevices API endpoint.
Endpoint string `protobuf:"bytes,2,opt,name=endpoint,proto3" json:"endpoint,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *MyDevicesIntegration) Reset() { *m = MyDevicesIntegration{} }
func (m *MyDevicesIntegration) String() string { return proto.CompactTextString(m) }
func (*MyDevicesIntegration) ProtoMessage() {}
func (*MyDevicesIntegration) Descriptor() ([]byte, []int) {
return fileDescriptor_0774996cc1ba5bfc, []int{33}
}
func (m *MyDevicesIntegration) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_MyDevicesIntegration.Unmarshal(m, b)
}
func (m *MyDevicesIntegration) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_MyDevicesIntegration.Marshal(b, m, deterministic)
}
func (m *MyDevicesIntegration) XXX_Merge(src proto.Message) {
xxx_messageInfo_MyDevicesIntegration.Merge(m, src)
}
func (m *MyDevicesIntegration) XXX_Size() int {
return xxx_messageInfo_MyDevicesIntegration.Size(m)
}
func (m *MyDevicesIntegration) XXX_DiscardUnknown() {
xxx_messageInfo_MyDevicesIntegration.DiscardUnknown(m)
}
var xxx_messageInfo_MyDevicesIntegration proto.InternalMessageInfo
func (m *MyDevicesIntegration) GetApplicationId() int64 {
if m != nil {
return m.ApplicationId
}
return 0
}
func (m *MyDevicesIntegration) GetEndpoint() string {
if m != nil {
return m.Endpoint
}
return ""
}
type CreateMyDevicesIntegrationRequest struct {
// Integration object to create.
Integration *MyDevicesIntegration `protobuf:"bytes,1,opt,name=integration,proto3" json:"integration,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *CreateMyDevicesIntegrationRequest) Reset() { *m = CreateMyDevicesIntegrationRequest{} }
func (m *CreateMyDevicesIntegrationRequest) String() string { return proto.CompactTextString(m) }
func (*CreateMyDevicesIntegrationRequest) ProtoMessage() {}
func (*CreateMyDevicesIntegrationRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_0774996cc1ba5bfc, []int{34}
}
func (m *CreateMyDevicesIntegrationRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CreateMyDevicesIntegrationRequest.Unmarshal(m, b)
}
func (m *CreateMyDevicesIntegrationRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_CreateMyDevicesIntegrationRequest.Marshal(b, m, deterministic)
}
func (m *CreateMyDevicesIntegrationRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_CreateMyDevicesIntegrationRequest.Merge(m, src)
}
func (m *CreateMyDevicesIntegrationRequest) XXX_Size() int {
return xxx_messageInfo_CreateMyDevicesIntegrationRequest.Size(m)
}
func (m *CreateMyDevicesIntegrationRequest) XXX_DiscardUnknown() {
xxx_messageInfo_CreateMyDevicesIntegrationRequest.DiscardUnknown(m)
}
var xxx_messageInfo_CreateMyDevicesIntegrationRequest proto.InternalMessageInfo
func (m *CreateMyDevicesIntegrationRequest) GetIntegration() *MyDevicesIntegration {
if m != nil {
return m.Integration
}
return nil
}
type GetMyDevicesIntegrationRequest struct {
// Application ID.
ApplicationId int64 `protobuf:"varint,1,opt,name=application_id,json=applicationID,proto3" json:"application_id,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GetMyDevicesIntegrationRequest) Reset() { *m = GetMyDevicesIntegrationRequest{} }
func (m *GetMyDevicesIntegrationRequest) String() string { return proto.CompactTextString(m) }
func (*GetMyDevicesIntegrationRequest) ProtoMessage() {}
func (*GetMyDevicesIntegrationRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_0774996cc1ba5bfc, []int{35}
}
func (m *GetMyDevicesIntegrationRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetMyDevicesIntegrationRequest.Unmarshal(m, b)
}
func (m *GetMyDevicesIntegrationRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetMyDevicesIntegrationRequest.Marshal(b, m, deterministic)
}
func (m *GetMyDevicesIntegrationRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetMyDevicesIntegrationRequest.Merge(m, src)
}
func (m *GetMyDevicesIntegrationRequest) XXX_Size() int {
return xxx_messageInfo_GetMyDevicesIntegrationRequest.Size(m)
}
func (m *GetMyDevicesIntegrationRequest) XXX_DiscardUnknown() {
xxx_messageInfo_GetMyDevicesIntegrationRequest.DiscardUnknown(m)
}
var xxx_messageInfo_GetMyDevicesIntegrationRequest proto.InternalMessageInfo
func (m *GetMyDevicesIntegrationRequest) GetApplicationId() int64 {
if m != nil {
return m.ApplicationId
}
return 0
}
type GetMyDevicesIntegrationResponse struct {
// Integration object.
Integration *MyDevicesIntegration `protobuf:"bytes,1,opt,name=integration,proto3" json:"integration,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GetMyDevicesIntegrationResponse) Reset() { *m = GetMyDevicesIntegrationResponse{} }
func (m *GetMyDevicesIntegrationResponse) String() string { return proto.CompactTextString(m) }
func (*GetMyDevicesIntegrationResponse) ProtoMessage() {}
func (*GetMyDevicesIntegrationResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_0774996cc1ba5bfc, []int{36}
}
func (m *GetMyDevicesIntegrationResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetMyDevicesIntegrationResponse.Unmarshal(m, b)
}
func (m *GetMyDevicesIntegrationResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetMyDevicesIntegrationResponse.Marshal(b, m, deterministic)
}
func (m *GetMyDevicesIntegrationResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetMyDevicesIntegrationResponse.Merge(m, src)
}
func (m *GetMyDevicesIntegrationResponse) XXX_Size() int {
return xxx_messageInfo_GetMyDevicesIntegrationResponse.Size(m)
}
func (m *GetMyDevicesIntegrationResponse) XXX_DiscardUnknown() {
xxx_messageInfo_GetMyDevicesIntegrationResponse.DiscardUnknown(m)
}
var xxx_messageInfo_GetMyDevicesIntegrationResponse proto.InternalMessageInfo
func (m *GetMyDevicesIntegrationResponse) GetIntegration() *MyDevicesIntegration {
if m != nil {
return m.Integration
}
return nil
}
type UpdateMyDevicesIntegrationRequest struct {
// Integration object.
Integration *MyDevicesIntegration `protobuf:"bytes,1,opt,name=integration,proto3" json:"integration,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *UpdateMyDevicesIntegrationRequest) Reset() { *m = UpdateMyDevicesIntegrationRequest{} }
func (m *UpdateMyDevicesIntegrationRequest) String() string { return proto.CompactTextString(m) }
func (*UpdateMyDevicesIntegrationRequest) ProtoMessage() {}
func (*UpdateMyDevicesIntegrationRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_0774996cc1ba5bfc, []int{37}
}
func (m *UpdateMyDevicesIntegrationRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_UpdateMyDevicesIntegrationRequest.Unmarshal(m, b)
}
func (m *UpdateMyDevicesIntegrationRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_UpdateMyDevicesIntegrationRequest.Marshal(b, m, deterministic)
}
func (m *UpdateMyDevicesIntegrationRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_UpdateMyDevicesIntegrationRequest.Merge(m, src)
}
func (m *UpdateMyDevicesIntegrationRequest) XXX_Size() int {
return xxx_messageInfo_UpdateMyDevicesIntegrationRequest.Size(m)
}
func (m *UpdateMyDevicesIntegrationRequest) XXX_DiscardUnknown() {
xxx_messageInfo_UpdateMyDevicesIntegrationRequest.DiscardUnknown(m)
}
var xxx_messageInfo_UpdateMyDevicesIntegrationRequest proto.InternalMessageInfo
func (m *UpdateMyDevicesIntegrationRequest) GetIntegration() *MyDevicesIntegration {
if m != nil {
return m.Integration
}
return nil
}
type DeleteMyDevicesIntegrationRequest struct {
// Application ID.
ApplicationId int64 `protobuf:"varint,1,opt,name=application_id,json=applicationID,proto3" json:"application_id,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *DeleteMyDevicesIntegrationRequest) Reset() { *m = DeleteMyDevicesIntegrationRequest{} }
func (m *DeleteMyDevicesIntegrationRequest) String() string { return proto.CompactTextString(m) }
func (*DeleteMyDevicesIntegrationRequest) ProtoMessage() {}
func (*DeleteMyDevicesIntegrationRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_0774996cc1ba5bfc, []int{38}
}
func (m *DeleteMyDevicesIntegrationRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_DeleteMyDevicesIntegrationRequest.Unmarshal(m, b)
}
func (m *DeleteMyDevicesIntegrationRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_DeleteMyDevicesIntegrationRequest.Marshal(b, m, deterministic)
}
func (m *DeleteMyDevicesIntegrationRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_DeleteMyDevicesIntegrationRequest.Merge(m, src)
}
func (m *DeleteMyDevicesIntegrationRequest) XXX_Size() int {
return xxx_messageInfo_DeleteMyDevicesIntegrationRequest.Size(m)
}
func (m *DeleteMyDevicesIntegrationRequest) XXX_DiscardUnknown() {
xxx_messageInfo_DeleteMyDevicesIntegrationRequest.DiscardUnknown(m)
}
var xxx_messageInfo_DeleteMyDevicesIntegrationRequest proto.InternalMessageInfo
func (m *DeleteMyDevicesIntegrationRequest) GetApplicationId() int64 {
if m != nil {
return m.ApplicationId
}
return 0
}
type LoRaCloudIntegration struct {
// Application ID.
ApplicationId int64 `protobuf:"varint,1,opt,name=application_id,json=applicationID,proto3" json:"application_id,omitempty"`
// Geolocation enabled.
Geolocation bool `protobuf:"varint,2,opt,name=geolocation,proto3" json:"geolocation,omitempty"`
// Geolocation token.
// This token can be obtained from the LoRa Cloud console.
GeolocationToken string `protobuf:"bytes,3,opt,name=geolocation_token,json=geolocationToken,proto3" json:"geolocation_token,omitempty"`
// Geolocation buffer TTL (in seconds).
// When > 0, uplink RX meta-data will be stored in a buffer so that
// the meta-data of multiple uplinks can be used for geolocation.
GeolocationBufferTtl uint32 `protobuf:"varint,4,opt,name=geolocation_buffer_ttl,json=geolocationBufferTTL,proto3" json:"geolocation_buffer_ttl,omitempty"`
// Geolocation minimum buffer size.
// When > 0, geolocation will only be performed when the buffer has
// at least the given size.
GeolocationMinBufferSize uint32 `protobuf:"varint,5,opt,name=geolocation_min_buffer_size,json=geolocationMinBufferSize,proto3" json:"geolocation_min_buffer_size,omitempty"`
// TDOA based geolocation is enabled.
GeolocationTdoa bool `protobuf:"varint,6,opt,name=geolocation_tdoa,json=geolocationTDOA,proto3" json:"geolocation_tdoa,omitempty"`
// RSSI based geolocation is enabled.
GeolocationRssi bool `protobuf:"varint,7,opt,name=geolocation_rssi,json=geolocationRSSI,proto3" json:"geolocation_rssi,omitempty"`
// GNSS based geolocation is enabled (LR1110).
GeolocationGnss bool `protobuf:"varint,8,opt,name=geolocation_gnss,json=geolocationGNSS,proto3" json:"geolocation_gnss,omitempty"`
// GNSS payload field.
// This holds the name of the field in the decoded payload object which
// contains the GNSS payload bytes.
GeolocationGnssPayloadField string `protobuf:"bytes,9,opt,name=geolocation_gnss_payload_field,json=geolocationGNSSPayloadField,proto3" json:"geolocation_gnss_payload_field,omitempty"`
// GNSS use RX time.
// In case this is set to true, the resolver will use the RX time of the
// network instead of the timestamp included in the LR1110 payload.
GeolocationGnssUseRxTime bool `protobuf:"varint,10,opt,name=geolocation_gnss_use_rx_time,json=geolocationGNSSUseRxTime,proto3" json:"geolocation_gnss_use_rx_time,omitempty"`
// Wifi based geolocation is enabled.
GeolocationWifi bool `protobuf:"varint,11,opt,name=geolocation_wifi,json=geolocationWifi,proto3" json:"geolocation_wifi,omitempty"`
// Wifi payload field.
// This holds the name of the field in the decoded payload object which
// contains an array of objects with the following fields:
// * macAddress - e.g. 01:23:45:67:89:ab
// * signalStrength - e.g. -51 (optional)
GeolocationWifiPayloadField string `protobuf:"bytes,12,opt,name=geolocation_wifi_payload_field,json=geolocationWifiPayloadField,proto3" json:"geolocation_wifi_payload_field,omitempty"`
// Device Application Services enabled.
Das bool `protobuf:"varint,13,opt,name=das,proto3" json:"das,omitempty"`
// Device Application Services token.
// This token can be obtained from the LoRa Cloud console.
DasToken string `protobuf:"bytes,14,opt,name=das_token,json=dasToken,proto3" json:"das_token,omitempty"`
// Device Application Services modem port (FPort).
// ChirpStack Application Server will only forward the FRMPayload to DAS
// when the uplink FPort is equal to this value.
DasModemPort uint32 `protobuf:"varint,15,opt,name=das_modem_port,json=dasModemPort,proto3" json:"das_modem_port,omitempty"`
// Device Application Services GNSS port (FPort).
// ChirpStack Application Server will forward the FRMPayload to DAS when
// as GNSS payload when the uplink FPort is equal to this value.
DasGnssPort uint32 `protobuf:"varint,16,opt,name=das_gnss_port,json=dasGNSSPort,proto3" json:"das_gnss_port,omitempty"`
// Device Application Services GNSS use RX time.
// In case this is set to true, the DAS resolver will use the RX time of the
// network instead of the timestamp included in the LR1110 payload.
DasGnssUseRxTime bool `protobuf:"varint,17,opt,name=das_gnss_use_rx_time,json=dasGNSSUseRxTime,proto3" json:"das_gnss_use_rx_time,omitempty"`
// Device Application Services streaming geoloc work-around.
// This is a temporarily work-around for processing streaming geolocation
// data. When enabled, stream records (expected in TLV format) are scanned
// for GNSS data (0x06 or 0x07). If found, the ChirpStack Application Server
// will make an additional call to the DAS API for resolving the location
// using the detected payload.
DasStreamingGeolocWorkaround bool `protobuf:"varint,18,opt,name=das_streaming_geoloc_workaround,json=dasStreamingGeolocWorkaround,proto3" json:"das_streaming_geoloc_workaround,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *LoRaCloudIntegration) Reset() { *m = LoRaCloudIntegration{} }
func (m *LoRaCloudIntegration) String() string { return proto.CompactTextString(m) }
func (*LoRaCloudIntegration) ProtoMessage() {}
func (*LoRaCloudIntegration) Descriptor() ([]byte, []int) {
return fileDescriptor_0774996cc1ba5bfc, []int{39}
}
func (m *LoRaCloudIntegration) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_LoRaCloudIntegration.Unmarshal(m, b)
}
func (m *LoRaCloudIntegration) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_LoRaCloudIntegration.Marshal(b, m, deterministic)
}
func (m *LoRaCloudIntegration) XXX_Merge(src proto.Message) {
xxx_messageInfo_LoRaCloudIntegration.Merge(m, src)
}
func (m *LoRaCloudIntegration) XXX_Size() int {
return xxx_messageInfo_LoRaCloudIntegration.Size(m)
}
func (m *LoRaCloudIntegration) XXX_DiscardUnknown() {
xxx_messageInfo_LoRaCloudIntegration.DiscardUnknown(m)
}
var xxx_messageInfo_LoRaCloudIntegration proto.InternalMessageInfo
func (m *LoRaCloudIntegration) GetApplicationId() int64 {
if m != nil {
return m.ApplicationId
}
return 0
}
func (m *LoRaCloudIntegration) GetGeolocation() bool {
if m != nil {
return m.Geolocation
}
return false
}
func (m *LoRaCloudIntegration) GetGeolocationToken() string {
if m != nil {
return m.GeolocationToken
}
return ""
}
func (m *LoRaCloudIntegration) GetGeolocationBufferTtl() uint32 {
if m != nil {
return m.GeolocationBufferTtl
}
return 0
}
func (m *LoRaCloudIntegration) GetGeolocationMinBufferSize() uint32 {
if m != nil {
return m.GeolocationMinBufferSize
}
return 0
}
func (m *LoRaCloudIntegration) GetGeolocationTdoa() bool {
if m != nil {
return m.GeolocationTdoa
}
return false
}
func (m *LoRaCloudIntegration) GetGeolocationRssi() bool {
if m != nil {
return m.GeolocationRssi
}
return false
}
func (m *LoRaCloudIntegration) GetGeolocationGnss() bool {
if m != nil {
return m.GeolocationGnss
}
return false
}
func (m *LoRaCloudIntegration) GetGeolocationGnssPayloadField() string {
if m != nil {
return m.GeolocationGnssPayloadField
}
return ""
}
func (m *LoRaCloudIntegration) GetGeolocationGnssUseRxTime() bool {
if m != nil {
return m.GeolocationGnssUseRxTime
}
return false
}
func (m *LoRaCloudIntegration) GetGeolocationWifi() bool {
if m != nil {
return m.GeolocationWifi
}
return false
}
func (m *LoRaCloudIntegration) GetGeolocationWifiPayloadField() string {
if m != nil {
return m.GeolocationWifiPayloadField
}
return ""
}
func (m *LoRaCloudIntegration) GetDas() bool {
if m != nil {
return m.Das
}
return false
}
func (m *LoRaCloudIntegration) GetDasToken() string {
if m != nil {
return m.DasToken
}
return ""
}
func (m *LoRaCloudIntegration) GetDasModemPort() uint32 {
if m != nil {
return m.DasModemPort
}
return 0
}
func (m *LoRaCloudIntegration) GetDasGnssPort() uint32 {
if m != nil {
return m.DasGnssPort
}
return 0
}
func (m *LoRaCloudIntegration) GetDasGnssUseRxTime() bool {
if m != nil {
return m.DasGnssUseRxTime
}
return false
}
func (m *LoRaCloudIntegration) GetDasStreamingGeolocWorkaround() bool {
if m != nil {
return m.DasStreamingGeolocWorkaround
}
return false
}
type CreateLoRaCloudIntegrationRequest struct {
// Integration object to create.
Integration *LoRaCloudIntegration `protobuf:"bytes,1,opt,name=integration,proto3" json:"integration,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *CreateLoRaCloudIntegrationRequest) Reset() { *m = CreateLoRaCloudIntegrationRequest{} }
func (m *CreateLoRaCloudIntegrationRequest) String() string { return proto.CompactTextString(m) }
func (*CreateLoRaCloudIntegrationRequest) ProtoMessage() {}
func (*CreateLoRaCloudIntegrationRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_0774996cc1ba5bfc, []int{40}
}
func (m *CreateLoRaCloudIntegrationRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CreateLoRaCloudIntegrationRequest.Unmarshal(m, b)
}
func (m *CreateLoRaCloudIntegrationRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_CreateLoRaCloudIntegrationRequest.Marshal(b, m, deterministic)
}
func (m *CreateLoRaCloudIntegrationRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_CreateLoRaCloudIntegrationRequest.Merge(m, src)
}
func (m *CreateLoRaCloudIntegrationRequest) XXX_Size() int {
return xxx_messageInfo_CreateLoRaCloudIntegrationRequest.Size(m)
}
func (m *CreateLoRaCloudIntegrationRequest) XXX_DiscardUnknown() {
xxx_messageInfo_CreateLoRaCloudIntegrationRequest.DiscardUnknown(m)
}
var xxx_messageInfo_CreateLoRaCloudIntegrationRequest proto.InternalMessageInfo
func (m *CreateLoRaCloudIntegrationRequest) GetIntegration() *LoRaCloudIntegration {
if m != nil {
return m.Integration
}
return nil
}
type GetLoRaCloudIntegrationRequest struct {
// Application ID.
ApplicationId int64 `protobuf:"varint,1,opt,name=application_id,json=applicationID,proto3" json:"application_id,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GetLoRaCloudIntegrationRequest) Reset() { *m = GetLoRaCloudIntegrationRequest{} }
func (m *GetLoRaCloudIntegrationRequest) String() string { return proto.CompactTextString(m) }
func (*GetLoRaCloudIntegrationRequest) ProtoMessage() {}
func (*GetLoRaCloudIntegrationRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_0774996cc1ba5bfc, []int{41}
}
func (m *GetLoRaCloudIntegrationRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetLoRaCloudIntegrationRequest.Unmarshal(m, b)
}
func (m *GetLoRaCloudIntegrationRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetLoRaCloudIntegrationRequest.Marshal(b, m, deterministic)
}
func (m *GetLoRaCloudIntegrationRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetLoRaCloudIntegrationRequest.Merge(m, src)
}
func (m *GetLoRaCloudIntegrationRequest) XXX_Size() int {
return xxx_messageInfo_GetLoRaCloudIntegrationRequest.Size(m)
}
func (m *GetLoRaCloudIntegrationRequest) XXX_DiscardUnknown() {
xxx_messageInfo_GetLoRaCloudIntegrationRequest.DiscardUnknown(m)
}
var xxx_messageInfo_GetLoRaCloudIntegrationRequest proto.InternalMessageInfo
func (m *GetLoRaCloudIntegrationRequest) GetApplicationId() int64 {
if m != nil {
return m.ApplicationId
}
return 0
}
type GetLoRaCloudIntegrationResponse struct {
// Integration object.
Integration *LoRaCloudIntegration `protobuf:"bytes,1,opt,name=integration,proto3" json:"integration,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GetLoRaCloudIntegrationResponse) Reset() { *m = GetLoRaCloudIntegrationResponse{} }
func (m *GetLoRaCloudIntegrationResponse) String() string { return proto.CompactTextString(m) }
func (*GetLoRaCloudIntegrationResponse) ProtoMessage() {}
func (*GetLoRaCloudIntegrationResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_0774996cc1ba5bfc, []int{42}
}
func (m *GetLoRaCloudIntegrationResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetLoRaCloudIntegrationResponse.Unmarshal(m, b)
}
func (m *GetLoRaCloudIntegrationResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetLoRaCloudIntegrationResponse.Marshal(b, m, deterministic)
}
func (m *GetLoRaCloudIntegrationResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetLoRaCloudIntegrationResponse.Merge(m, src)
}
func (m *GetLoRaCloudIntegrationResponse) XXX_Size() int {
return xxx_messageInfo_GetLoRaCloudIntegrationResponse.Size(m)
}
func (m *GetLoRaCloudIntegrationResponse) XXX_DiscardUnknown() {
xxx_messageInfo_GetLoRaCloudIntegrationResponse.DiscardUnknown(m)
}
var xxx_messageInfo_GetLoRaCloudIntegrationResponse proto.InternalMessageInfo
func (m *GetLoRaCloudIntegrationResponse) GetIntegration() *LoRaCloudIntegration {
if m != nil {
return m.Integration
}
return nil
}
type UpdateLoRaCloudIntegrationRequest struct {
// Integration object.
Integration *LoRaCloudIntegration `protobuf:"bytes,1,opt,name=integration,proto3" json:"integration,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *UpdateLoRaCloudIntegrationRequest) Reset() { *m = UpdateLoRaCloudIntegrationRequest{} }
func (m *UpdateLoRaCloudIntegrationRequest) String() string { return proto.CompactTextString(m) }
func (*UpdateLoRaCloudIntegrationRequest) ProtoMessage() {}
func (*UpdateLoRaCloudIntegrationRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_0774996cc1ba5bfc, []int{43}
}
func (m *UpdateLoRaCloudIntegrationRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_UpdateLoRaCloudIntegrationRequest.Unmarshal(m, b)
}
func (m *UpdateLoRaCloudIntegrationRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_UpdateLoRaCloudIntegrationRequest.Marshal(b, m, deterministic)
}
func (m *UpdateLoRaCloudIntegrationRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_UpdateLoRaCloudIntegrationRequest.Merge(m, src)
}
func (m *UpdateLoRaCloudIntegrationRequest) XXX_Size() int {
return xxx_messageInfo_UpdateLoRaCloudIntegrationRequest.Size(m)
}
func (m *UpdateLoRaCloudIntegrationRequest) XXX_DiscardUnknown() {
xxx_messageInfo_UpdateLoRaCloudIntegrationRequest.DiscardUnknown(m)
}
var xxx_messageInfo_UpdateLoRaCloudIntegrationRequest proto.InternalMessageInfo
func (m *UpdateLoRaCloudIntegrationRequest) GetIntegration() *LoRaCloudIntegration {
if m != nil {
return m.Integration
}
return nil
}
type DeleteLoRaCloudIntegrationRequest struct {
// Application ID.
ApplicationId int64 `protobuf:"varint,1,opt,name=application_id,json=applicationID,proto3" json:"application_id,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *DeleteLoRaCloudIntegrationRequest) Reset() { *m = DeleteLoRaCloudIntegrationRequest{} }
func (m *DeleteLoRaCloudIntegrationRequest) String() string { return proto.CompactTextString(m) }
func (*DeleteLoRaCloudIntegrationRequest) ProtoMessage() {}
func (*DeleteLoRaCloudIntegrationRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_0774996cc1ba5bfc, []int{44}
}
func (m *DeleteLoRaCloudIntegrationRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_DeleteLoRaCloudIntegrationRequest.Unmarshal(m, b)
}
func (m *DeleteLoRaCloudIntegrationRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_DeleteLoRaCloudIntegrationRequest.Marshal(b, m, deterministic)
}
func (m *DeleteLoRaCloudIntegrationRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_DeleteLoRaCloudIntegrationRequest.Merge(m, src)
}
func (m *DeleteLoRaCloudIntegrationRequest) XXX_Size() int {
return xxx_messageInfo_DeleteLoRaCloudIntegrationRequest.Size(m)
}
func (m *DeleteLoRaCloudIntegrationRequest) XXX_DiscardUnknown() {
xxx_messageInfo_DeleteLoRaCloudIntegrationRequest.DiscardUnknown(m)
}
var xxx_messageInfo_DeleteLoRaCloudIntegrationRequest proto.InternalMessageInfo
func (m *DeleteLoRaCloudIntegrationRequest) GetApplicationId() int64 {
if m != nil {
return m.ApplicationId
}
return 0
}
type GCPPubSubIntegration struct {
// Application ID.
ApplicationId int64 `protobuf:"varint,1,opt,name=application_id,json=applicationID,proto3" json:"application_id,omitempty"`
// Marshaler.
// This defines the marshaler that is used to encode the event payload.
Marshaler Marshaler `protobuf:"varint,2,opt,name=marshaler,proto3,enum=api.Marshaler" json:"marshaler,omitempty"`
// Credentials file.
// This IAM service-account credentials file (JSON) must have the following Pub/Sub roles:
// * Pub/Sub Publisher
CredentialsFile string `protobuf:"bytes,3,opt,name=credentials_file,json=credentialsFile,proto3" json:"credentials_file,omitempty"`
// Project ID.
ProjectId string `protobuf:"bytes,4,opt,name=project_id,json=projectID,proto3" json:"project_id,omitempty"`
// Topic name.
// This is the name of the Pub/Sub topic.
TopicName string `protobuf:"bytes,5,opt,name=topic_name,json=topicName,proto3" json:"topic_name,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GCPPubSubIntegration) Reset() { *m = GCPPubSubIntegration{} }
func (m *GCPPubSubIntegration) String() string { return proto.CompactTextString(m) }
func (*GCPPubSubIntegration) ProtoMessage() {}
func (*GCPPubSubIntegration) Descriptor() ([]byte, []int) {
return fileDescriptor_0774996cc1ba5bfc, []int{45}
}
func (m *GCPPubSubIntegration) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GCPPubSubIntegration.Unmarshal(m, b)
}
func (m *GCPPubSubIntegration) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GCPPubSubIntegration.Marshal(b, m, deterministic)
}
func (m *GCPPubSubIntegration) XXX_Merge(src proto.Message) {
xxx_messageInfo_GCPPubSubIntegration.Merge(m, src)
}
func (m *GCPPubSubIntegration) XXX_Size() int {
return xxx_messageInfo_GCPPubSubIntegration.Size(m)
}
func (m *GCPPubSubIntegration) XXX_DiscardUnknown() {
xxx_messageInfo_GCPPubSubIntegration.DiscardUnknown(m)
}
var xxx_messageInfo_GCPPubSubIntegration proto.InternalMessageInfo
func (m *GCPPubSubIntegration) GetApplicationId() int64 {
if m != nil {
return m.ApplicationId
}
return 0
}
func (m *GCPPubSubIntegration) GetMarshaler() Marshaler {
if m != nil {
return m.Marshaler
}
return Marshaler_JSON
}
func (m *GCPPubSubIntegration) GetCredentialsFile() string {
if m != nil {
return m.CredentialsFile
}
return ""
}
func (m *GCPPubSubIntegration) GetProjectId() string {
if m != nil {
return m.ProjectId
}
return ""
}
func (m *GCPPubSubIntegration) GetTopicName() string {
if m != nil {
return m.TopicName
}
return ""
}
type CreateGCPPubSubIntegrationRequest struct {
// Integration object to create.
Integration *GCPPubSubIntegration `protobuf:"bytes,1,opt,name=integration,proto3" json:"integration,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *CreateGCPPubSubIntegrationRequest) Reset() { *m = CreateGCPPubSubIntegrationRequest{} }
func (m *CreateGCPPubSubIntegrationRequest) String() string { return proto.CompactTextString(m) }
func (*CreateGCPPubSubIntegrationRequest) ProtoMessage() {}
func (*CreateGCPPubSubIntegrationRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_0774996cc1ba5bfc, []int{46}
}
func (m *CreateGCPPubSubIntegrationRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CreateGCPPubSubIntegrationRequest.Unmarshal(m, b)
}
func (m *CreateGCPPubSubIntegrationRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_CreateGCPPubSubIntegrationRequest.Marshal(b, m, deterministic)
}
func (m *CreateGCPPubSubIntegrationRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_CreateGCPPubSubIntegrationRequest.Merge(m, src)
}
func (m *CreateGCPPubSubIntegrationRequest) XXX_Size() int {
return xxx_messageInfo_CreateGCPPubSubIntegrationRequest.Size(m)
}
func (m *CreateGCPPubSubIntegrationRequest) XXX_DiscardUnknown() {
xxx_messageInfo_CreateGCPPubSubIntegrationRequest.DiscardUnknown(m)
}
var xxx_messageInfo_CreateGCPPubSubIntegrationRequest proto.InternalMessageInfo
func (m *CreateGCPPubSubIntegrationRequest) GetIntegration() *GCPPubSubIntegration {
if m != nil {
return m.Integration
}
return nil
}
type GetGCPPubSubIntegrationRequest struct {
// Application ID.
ApplicationId int64 `protobuf:"varint,1,opt,name=application_id,json=applicationID,proto3" json:"application_id,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GetGCPPubSubIntegrationRequest) Reset() { *m = GetGCPPubSubIntegrationRequest{} }
func (m *GetGCPPubSubIntegrationRequest) String() string { return proto.CompactTextString(m) }
func (*GetGCPPubSubIntegrationRequest) ProtoMessage() {}
func (*GetGCPPubSubIntegrationRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_0774996cc1ba5bfc, []int{47}
}
func (m *GetGCPPubSubIntegrationRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetGCPPubSubIntegrationRequest.Unmarshal(m, b)
}
func (m *GetGCPPubSubIntegrationRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetGCPPubSubIntegrationRequest.Marshal(b, m, deterministic)
}
func (m *GetGCPPubSubIntegrationRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetGCPPubSubIntegrationRequest.Merge(m, src)
}
func (m *GetGCPPubSubIntegrationRequest) XXX_Size() int {
return xxx_messageInfo_GetGCPPubSubIntegrationRequest.Size(m)
}
func (m *GetGCPPubSubIntegrationRequest) XXX_DiscardUnknown() {
xxx_messageInfo_GetGCPPubSubIntegrationRequest.DiscardUnknown(m)
}
var xxx_messageInfo_GetGCPPubSubIntegrationRequest proto.InternalMessageInfo
func (m *GetGCPPubSubIntegrationRequest) GetApplicationId() int64 {
if m != nil {
return m.ApplicationId
}
return 0
}
type GetGCPPubSubIntegrationResponse struct {
// Integration object.
Integration *GCPPubSubIntegration `protobuf:"bytes,1,opt,name=integration,proto3" json:"integration,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GetGCPPubSubIntegrationResponse) Reset() { *m = GetGCPPubSubIntegrationResponse{} }
func (m *GetGCPPubSubIntegrationResponse) String() string { return proto.CompactTextString(m) }
func (*GetGCPPubSubIntegrationResponse) ProtoMessage() {}
func (*GetGCPPubSubIntegrationResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_0774996cc1ba5bfc, []int{48}
}
func (m *GetGCPPubSubIntegrationResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetGCPPubSubIntegrationResponse.Unmarshal(m, b)
}
func (m *GetGCPPubSubIntegrationResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetGCPPubSubIntegrationResponse.Marshal(b, m, deterministic)
}
func (m *GetGCPPubSubIntegrationResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetGCPPubSubIntegrationResponse.Merge(m, src)
}
func (m *GetGCPPubSubIntegrationResponse) XXX_Size() int {
return xxx_messageInfo_GetGCPPubSubIntegrationResponse.Size(m)
}
func (m *GetGCPPubSubIntegrationResponse) XXX_DiscardUnknown() {
xxx_messageInfo_GetGCPPubSubIntegrationResponse.DiscardUnknown(m)
}
var xxx_messageInfo_GetGCPPubSubIntegrationResponse proto.InternalMessageInfo
func (m *GetGCPPubSubIntegrationResponse) GetIntegration() *GCPPubSubIntegration {
if m != nil {
return m.Integration
}
return nil
}
type UpdateGCPPubSubIntegrationRequest struct {
// Integration object to update.
Integration *GCPPubSubIntegration `protobuf:"bytes,1,opt,name=integration,proto3" json:"integration,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *UpdateGCPPubSubIntegrationRequest) Reset() { *m = UpdateGCPPubSubIntegrationRequest{} }
func (m *UpdateGCPPubSubIntegrationRequest) String() string { return proto.CompactTextString(m) }
func (*UpdateGCPPubSubIntegrationRequest) ProtoMessage() {}
func (*UpdateGCPPubSubIntegrationRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_0774996cc1ba5bfc, []int{49}
}
func (m *UpdateGCPPubSubIntegrationRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_UpdateGCPPubSubIntegrationRequest.Unmarshal(m, b)
}
func (m *UpdateGCPPubSubIntegrationRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_UpdateGCPPubSubIntegrationRequest.Marshal(b, m, deterministic)
}
func (m *UpdateGCPPubSubIntegrationRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_UpdateGCPPubSubIntegrationRequest.Merge(m, src)
}
func (m *UpdateGCPPubSubIntegrationRequest) XXX_Size() int {
return xxx_messageInfo_UpdateGCPPubSubIntegrationRequest.Size(m)
}
func (m *UpdateGCPPubSubIntegrationRequest) XXX_DiscardUnknown() {
xxx_messageInfo_UpdateGCPPubSubIntegrationRequest.DiscardUnknown(m)
}
var xxx_messageInfo_UpdateGCPPubSubIntegrationRequest proto.InternalMessageInfo
func (m *UpdateGCPPubSubIntegrationRequest) GetIntegration() *GCPPubSubIntegration {
if m != nil {
return m.Integration
}
return nil
}
type DeleteGCPPubSubIntegrationRequest struct {
// The id of the application.
ApplicationId int64 `protobuf:"varint,1,opt,name=application_id,json=applicationID,proto3" json:"application_id,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *DeleteGCPPubSubIntegrationRequest) Reset() { *m = DeleteGCPPubSubIntegrationRequest{} }
func (m *DeleteGCPPubSubIntegrationRequest) String() string { return proto.CompactTextString(m) }
func (*DeleteGCPPubSubIntegrationRequest) ProtoMessage() {}
func (*DeleteGCPPubSubIntegrationRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_0774996cc1ba5bfc, []int{50}
}
func (m *DeleteGCPPubSubIntegrationRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_DeleteGCPPubSubIntegrationRequest.Unmarshal(m, b)
}
func (m *DeleteGCPPubSubIntegrationRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_DeleteGCPPubSubIntegrationRequest.Marshal(b, m, deterministic)
}
func (m *DeleteGCPPubSubIntegrationRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_DeleteGCPPubSubIntegrationRequest.Merge(m, src)
}
func (m *DeleteGCPPubSubIntegrationRequest) XXX_Size() int {
return xxx_messageInfo_DeleteGCPPubSubIntegrationRequest.Size(m)
}
func (m *DeleteGCPPubSubIntegrationRequest) XXX_DiscardUnknown() {
xxx_messageInfo_DeleteGCPPubSubIntegrationRequest.DiscardUnknown(m)
}
var xxx_messageInfo_DeleteGCPPubSubIntegrationRequest proto.InternalMessageInfo
func (m *DeleteGCPPubSubIntegrationRequest) GetApplicationId() int64 {
if m != nil {
return m.ApplicationId
}
return 0
}
type AWSSNSIntegration struct {
// Application ID.
ApplicationId int64 `protobuf:"varint,1,opt,name=application_id,json=applicationID,proto3" json:"application_id,omitempty"`
// Marshaler.
// This defines the marshaler that is used to encode the event payload.
Marshaler Marshaler `protobuf:"varint,2,opt,name=marshaler,proto3,enum=api.Marshaler" json:"marshaler,omitempty"`
// AWS region.
Region string `protobuf:"bytes,3,opt,name=region,proto3" json:"region,omitempty"`
// AWS Access Key ID.
AccessKeyId string `protobuf:"bytes,4,opt,name=access_key_id,json=accessKeyID,proto3" json:"access_key_id,omitempty"`
// AWS Secret Access Key.
SecretAccessKey string `protobuf:"bytes,5,opt,name=secret_access_key,json=secretAccessKey,proto3" json:"secret_access_key,omitempty"`
// Topic ARN.
TopicArn string `protobuf:"bytes,6,opt,name=topic_arn,json=topicARN,proto3" json:"topic_arn,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *AWSSNSIntegration) Reset() { *m = AWSSNSIntegration{} }
func (m *AWSSNSIntegration) String() string { return proto.CompactTextString(m) }
func (*AWSSNSIntegration) ProtoMessage() {}
func (*AWSSNSIntegration) Descriptor() ([]byte, []int) {
return fileDescriptor_0774996cc1ba5bfc, []int{51}
}
func (m *AWSSNSIntegration) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_AWSSNSIntegration.Unmarshal(m, b)
}
func (m *AWSSNSIntegration) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_AWSSNSIntegration.Marshal(b, m, deterministic)
}
func (m *AWSSNSIntegration) XXX_Merge(src proto.Message) {
xxx_messageInfo_AWSSNSIntegration.Merge(m, src)
}
func (m *AWSSNSIntegration) XXX_Size() int {
return xxx_messageInfo_AWSSNSIntegration.Size(m)
}
func (m *AWSSNSIntegration) XXX_DiscardUnknown() {
xxx_messageInfo_AWSSNSIntegration.DiscardUnknown(m)
}
var xxx_messageInfo_AWSSNSIntegration proto.InternalMessageInfo
func (m *AWSSNSIntegration) GetApplicationId() int64 {
if m != nil {
return m.ApplicationId
}
return 0
}
func (m *AWSSNSIntegration) GetMarshaler() Marshaler {
if m != nil {
return m.Marshaler
}
return Marshaler_JSON
}
func (m *AWSSNSIntegration) GetRegion() string {
if m != nil {
return m.Region
}
return ""
}
func (m *AWSSNSIntegration) GetAccessKeyId() string {
if m != nil {
return m.AccessKeyId
}
return ""
}
func (m *AWSSNSIntegration) GetSecretAccessKey() string {
if m != nil {
return m.SecretAccessKey
}
return ""
}
func (m *AWSSNSIntegration) GetTopicArn() string {
if m != nil {
return m.TopicArn
}
return ""
}
type CreateAWSSNSIntegrationRequest struct {
// Integration object to create.
Integration *AWSSNSIntegration `protobuf:"bytes,1,opt,name=integration,proto3" json:"integration,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *CreateAWSSNSIntegrationRequest) Reset() { *m = CreateAWSSNSIntegrationRequest{} }
func (m *CreateAWSSNSIntegrationRequest) String() string { return proto.CompactTextString(m) }
func (*CreateAWSSNSIntegrationRequest) ProtoMessage() {}
func (*CreateAWSSNSIntegrationRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_0774996cc1ba5bfc, []int{52}
}
func (m *CreateAWSSNSIntegrationRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CreateAWSSNSIntegrationRequest.Unmarshal(m, b)
}
func (m *CreateAWSSNSIntegrationRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_CreateAWSSNSIntegrationRequest.Marshal(b, m, deterministic)
}
func (m *CreateAWSSNSIntegrationRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_CreateAWSSNSIntegrationRequest.Merge(m, src)
}
func (m *CreateAWSSNSIntegrationRequest) XXX_Size() int {
return xxx_messageInfo_CreateAWSSNSIntegrationRequest.Size(m)
}
func (m *CreateAWSSNSIntegrationRequest) XXX_DiscardUnknown() {
xxx_messageInfo_CreateAWSSNSIntegrationRequest.DiscardUnknown(m)
}
var xxx_messageInfo_CreateAWSSNSIntegrationRequest proto.InternalMessageInfo
func (m *CreateAWSSNSIntegrationRequest) GetIntegration() *AWSSNSIntegration {
if m != nil {
return m.Integration
}
return nil
}
type GetAWSSNSIntegrationRequest struct {
// Application ID.
ApplicationId int64 `protobuf:"varint,1,opt,name=application_id,json=applicationID,proto3" json:"application_id,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GetAWSSNSIntegrationRequest) Reset() { *m = GetAWSSNSIntegrationRequest{} }
func (m *GetAWSSNSIntegrationRequest) String() string { return proto.CompactTextString(m) }
func (*GetAWSSNSIntegrationRequest) ProtoMessage() {}
func (*GetAWSSNSIntegrationRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_0774996cc1ba5bfc, []int{53}
}
func (m *GetAWSSNSIntegrationRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetAWSSNSIntegrationRequest.Unmarshal(m, b)
}
func (m *GetAWSSNSIntegrationRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetAWSSNSIntegrationRequest.Marshal(b, m, deterministic)
}
func (m *GetAWSSNSIntegrationRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetAWSSNSIntegrationRequest.Merge(m, src)
}
func (m *GetAWSSNSIntegrationRequest) XXX_Size() int {
return xxx_messageInfo_GetAWSSNSIntegrationRequest.Size(m)
}
func (m *GetAWSSNSIntegrationRequest) XXX_DiscardUnknown() {
xxx_messageInfo_GetAWSSNSIntegrationRequest.DiscardUnknown(m)
}
var xxx_messageInfo_GetAWSSNSIntegrationRequest proto.InternalMessageInfo
func (m *GetAWSSNSIntegrationRequest) GetApplicationId() int64 {
if m != nil {
return m.ApplicationId
}
return 0
}
type GetAWSSNSIntegrationResponse struct {
// Integration object.
Integration *AWSSNSIntegration `protobuf:"bytes,1,opt,name=integration,proto3" json:"integration,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GetAWSSNSIntegrationResponse) Reset() { *m = GetAWSSNSIntegrationResponse{} }
func (m *GetAWSSNSIntegrationResponse) String() string { return proto.CompactTextString(m) }
func (*GetAWSSNSIntegrationResponse) ProtoMessage() {}
func (*GetAWSSNSIntegrationResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_0774996cc1ba5bfc, []int{54}
}
func (m *GetAWSSNSIntegrationResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetAWSSNSIntegrationResponse.Unmarshal(m, b)
}
func (m *GetAWSSNSIntegrationResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetAWSSNSIntegrationResponse.Marshal(b, m, deterministic)
}
func (m *GetAWSSNSIntegrationResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetAWSSNSIntegrationResponse.Merge(m, src)
}
func (m *GetAWSSNSIntegrationResponse) XXX_Size() int {
return xxx_messageInfo_GetAWSSNSIntegrationResponse.Size(m)
}
func (m *GetAWSSNSIntegrationResponse) XXX_DiscardUnknown() {
xxx_messageInfo_GetAWSSNSIntegrationResponse.DiscardUnknown(m)
}
var xxx_messageInfo_GetAWSSNSIntegrationResponse proto.InternalMessageInfo
func (m *GetAWSSNSIntegrationResponse) GetIntegration() *AWSSNSIntegration {
if m != nil {
return m.Integration
}
return nil
}
type UpdateAWSSNSIntegrationRequest struct {
// Integration object to update.
Integration *AWSSNSIntegration `protobuf:"bytes,1,opt,name=integration,proto3" json:"integration,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *UpdateAWSSNSIntegrationRequest) Reset() { *m = UpdateAWSSNSIntegrationRequest{} }
func (m *UpdateAWSSNSIntegrationRequest) String() string { return proto.CompactTextString(m) }
func (*UpdateAWSSNSIntegrationRequest) ProtoMessage() {}
func (*UpdateAWSSNSIntegrationRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_0774996cc1ba5bfc, []int{55}
}
func (m *UpdateAWSSNSIntegrationRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_UpdateAWSSNSIntegrationRequest.Unmarshal(m, b)
}
func (m *UpdateAWSSNSIntegrationRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_UpdateAWSSNSIntegrationRequest.Marshal(b, m, deterministic)
}
func (m *UpdateAWSSNSIntegrationRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_UpdateAWSSNSIntegrationRequest.Merge(m, src)
}
func (m *UpdateAWSSNSIntegrationRequest) XXX_Size() int {
return xxx_messageInfo_UpdateAWSSNSIntegrationRequest.Size(m)
}
func (m *UpdateAWSSNSIntegrationRequest) XXX_DiscardUnknown() {
xxx_messageInfo_UpdateAWSSNSIntegrationRequest.DiscardUnknown(m)
}
var xxx_messageInfo_UpdateAWSSNSIntegrationRequest proto.InternalMessageInfo
func (m *UpdateAWSSNSIntegrationRequest) GetIntegration() *AWSSNSIntegration {
if m != nil {
return m.Integration
}
return nil
}
type DeleteAWSSNSIntegrationRequest struct {
// The id of the application.
ApplicationId int64 `protobuf:"varint,1,opt,name=application_id,json=applicationID,proto3" json:"application_id,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *DeleteAWSSNSIntegrationRequest) Reset() { *m = DeleteAWSSNSIntegrationRequest{} }
func (m *DeleteAWSSNSIntegrationRequest) String() string { return proto.CompactTextString(m) }
func (*DeleteAWSSNSIntegrationRequest) ProtoMessage() {}
func (*DeleteAWSSNSIntegrationRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_0774996cc1ba5bfc, []int{56}
}
func (m *DeleteAWSSNSIntegrationRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_DeleteAWSSNSIntegrationRequest.Unmarshal(m, b)
}
func (m *DeleteAWSSNSIntegrationRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_DeleteAWSSNSIntegrationRequest.Marshal(b, m, deterministic)
}
func (m *DeleteAWSSNSIntegrationRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_DeleteAWSSNSIntegrationRequest.Merge(m, src)
}
func (m *DeleteAWSSNSIntegrationRequest) XXX_Size() int {
return xxx_messageInfo_DeleteAWSSNSIntegrationRequest.Size(m)
}
func (m *DeleteAWSSNSIntegrationRequest) XXX_DiscardUnknown() {
xxx_messageInfo_DeleteAWSSNSIntegrationRequest.DiscardUnknown(m)
}
var xxx_messageInfo_DeleteAWSSNSIntegrationRequest proto.InternalMessageInfo
func (m *DeleteAWSSNSIntegrationRequest) GetApplicationId() int64 {
if m != nil {
return m.ApplicationId
}
return 0
}
type AzureServiceBusIntegration struct {
// Application ID.
ApplicationId int64 `protobuf:"varint,1,opt,name=application_id,json=applicationID,proto3" json:"application_id,omitempty"`
// Marshaler.
// This defines the marshaler that is used to encode the event payload.
Marshaler Marshaler `protobuf:"varint,2,opt,name=marshaler,proto3,enum=api.Marshaler" json:"marshaler,omitempty"`
// Connection string.
ConnectionString string `protobuf:"bytes,3,opt,name=connection_string,json=connectionString,proto3" json:"connection_string,omitempty"`
// Publish name.
// This is the name of the topic or queue.
PublishName string `protobuf:"bytes,4,opt,name=publish_name,json=publishName,proto3" json:"publish_name,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *AzureServiceBusIntegration) Reset() { *m = AzureServiceBusIntegration{} }
func (m *AzureServiceBusIntegration) String() string { return proto.CompactTextString(m) }
func (*AzureServiceBusIntegration) ProtoMessage() {}
func (*AzureServiceBusIntegration) Descriptor() ([]byte, []int) {
return fileDescriptor_0774996cc1ba5bfc, []int{57}
}
func (m *AzureServiceBusIntegration) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_AzureServiceBusIntegration.Unmarshal(m, b)
}
func (m *AzureServiceBusIntegration) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_AzureServiceBusIntegration.Marshal(b, m, deterministic)
}
func (m *AzureServiceBusIntegration) XXX_Merge(src proto.Message) {
xxx_messageInfo_AzureServiceBusIntegration.Merge(m, src)
}
func (m *AzureServiceBusIntegration) XXX_Size() int {
return xxx_messageInfo_AzureServiceBusIntegration.Size(m)
}
func (m *AzureServiceBusIntegration) XXX_DiscardUnknown() {
xxx_messageInfo_AzureServiceBusIntegration.DiscardUnknown(m)
}
var xxx_messageInfo_AzureServiceBusIntegration proto.InternalMessageInfo
func (m *AzureServiceBusIntegration) GetApplicationId() int64 {
if m != nil {
return m.ApplicationId
}
return 0
}
func (m *AzureServiceBusIntegration) GetMarshaler() Marshaler {
if m != nil {
return m.Marshaler
}
return Marshaler_JSON
}
func (m *AzureServiceBusIntegration) GetConnectionString() string {
if m != nil {
return m.ConnectionString
}
return ""
}
func (m *AzureServiceBusIntegration) GetPublishName() string {
if m != nil {
return m.PublishName
}
return ""
}
type CreateAzureServiceBusIntegrationRequest struct {
// Integration object to create.
Integration *AzureServiceBusIntegration `protobuf:"bytes,1,opt,name=integration,proto3" json:"integration,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *CreateAzureServiceBusIntegrationRequest) Reset() {
*m = CreateAzureServiceBusIntegrationRequest{}
}
func (m *CreateAzureServiceBusIntegrationRequest) String() string { return proto.CompactTextString(m) }
func (*CreateAzureServiceBusIntegrationRequest) ProtoMessage() {}
func (*CreateAzureServiceBusIntegrationRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_0774996cc1ba5bfc, []int{58}
}
func (m *CreateAzureServiceBusIntegrationRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CreateAzureServiceBusIntegrationRequest.Unmarshal(m, b)
}
func (m *CreateAzureServiceBusIntegrationRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_CreateAzureServiceBusIntegrationRequest.Marshal(b, m, deterministic)
}
func (m *CreateAzureServiceBusIntegrationRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_CreateAzureServiceBusIntegrationRequest.Merge(m, src)
}
func (m *CreateAzureServiceBusIntegrationRequest) XXX_Size() int {
return xxx_messageInfo_CreateAzureServiceBusIntegrationRequest.Size(m)
}
func (m *CreateAzureServiceBusIntegrationRequest) XXX_DiscardUnknown() {
xxx_messageInfo_CreateAzureServiceBusIntegrationRequest.DiscardUnknown(m)
}
var xxx_messageInfo_CreateAzureServiceBusIntegrationRequest proto.InternalMessageInfo
func (m *CreateAzureServiceBusIntegrationRequest) GetIntegration() *AzureServiceBusIntegration {
if m != nil {
return m.Integration
}
return nil
}
type GetAzureServiceBusIntegrationRequest struct {
// Application ID.
ApplicationId int64 `protobuf:"varint,1,opt,name=application_id,json=applicationID,proto3" json:"application_id,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GetAzureServiceBusIntegrationRequest) Reset() { *m = GetAzureServiceBusIntegrationRequest{} }
func (m *GetAzureServiceBusIntegrationRequest) String() string { return proto.CompactTextString(m) }
func (*GetAzureServiceBusIntegrationRequest) ProtoMessage() {}
func (*GetAzureServiceBusIntegrationRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_0774996cc1ba5bfc, []int{59}
}
func (m *GetAzureServiceBusIntegrationRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetAzureServiceBusIntegrationRequest.Unmarshal(m, b)
}
func (m *GetAzureServiceBusIntegrationRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetAzureServiceBusIntegrationRequest.Marshal(b, m, deterministic)
}
func (m *GetAzureServiceBusIntegrationRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetAzureServiceBusIntegrationRequest.Merge(m, src)
}
func (m *GetAzureServiceBusIntegrationRequest) XXX_Size() int {
return xxx_messageInfo_GetAzureServiceBusIntegrationRequest.Size(m)
}
func (m *GetAzureServiceBusIntegrationRequest) XXX_DiscardUnknown() {
xxx_messageInfo_GetAzureServiceBusIntegrationRequest.DiscardUnknown(m)
}
var xxx_messageInfo_GetAzureServiceBusIntegrationRequest proto.InternalMessageInfo
func (m *GetAzureServiceBusIntegrationRequest) GetApplicationId() int64 {
if m != nil {
return m.ApplicationId
}
return 0
}
type GetAzureServiceBusIntegrationResponse struct {
// Integration object.
Integration *AzureServiceBusIntegration `protobuf:"bytes,1,opt,name=integration,proto3" json:"integration,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GetAzureServiceBusIntegrationResponse) Reset() { *m = GetAzureServiceBusIntegrationResponse{} }
func (m *GetAzureServiceBusIntegrationResponse) String() string { return proto.CompactTextString(m) }
func (*GetAzureServiceBusIntegrationResponse) ProtoMessage() {}
func (*GetAzureServiceBusIntegrationResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_0774996cc1ba5bfc, []int{60}
}
func (m *GetAzureServiceBusIntegrationResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetAzureServiceBusIntegrationResponse.Unmarshal(m, b)
}
func (m *GetAzureServiceBusIntegrationResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetAzureServiceBusIntegrationResponse.Marshal(b, m, deterministic)
}
func (m *GetAzureServiceBusIntegrationResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetAzureServiceBusIntegrationResponse.Merge(m, src)
}
func (m *GetAzureServiceBusIntegrationResponse) XXX_Size() int {
return xxx_messageInfo_GetAzureServiceBusIntegrationResponse.Size(m)
}
func (m *GetAzureServiceBusIntegrationResponse) XXX_DiscardUnknown() {
xxx_messageInfo_GetAzureServiceBusIntegrationResponse.DiscardUnknown(m)
}
var xxx_messageInfo_GetAzureServiceBusIntegrationResponse proto.InternalMessageInfo
func (m *GetAzureServiceBusIntegrationResponse) GetIntegration() *AzureServiceBusIntegration {
if m != nil {
return m.Integration
}
return nil
}
type UpdateAzureServiceBusIntegrationRequest struct {
// Integration object to update.
Integration *AzureServiceBusIntegration `protobuf:"bytes,1,opt,name=integration,proto3" json:"integration,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *UpdateAzureServiceBusIntegrationRequest) Reset() {
*m = UpdateAzureServiceBusIntegrationRequest{}
}
func (m *UpdateAzureServiceBusIntegrationRequest) String() string { return proto.CompactTextString(m) }
func (*UpdateAzureServiceBusIntegrationRequest) ProtoMessage() {}
func (*UpdateAzureServiceBusIntegrationRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_0774996cc1ba5bfc, []int{61}
}
func (m *UpdateAzureServiceBusIntegrationRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_UpdateAzureServiceBusIntegrationRequest.Unmarshal(m, b)
}
func (m *UpdateAzureServiceBusIntegrationRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_UpdateAzureServiceBusIntegrationRequest.Marshal(b, m, deterministic)
}
func (m *UpdateAzureServiceBusIntegrationRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_UpdateAzureServiceBusIntegrationRequest.Merge(m, src)
}
func (m *UpdateAzureServiceBusIntegrationRequest) XXX_Size() int {
return xxx_messageInfo_UpdateAzureServiceBusIntegrationRequest.Size(m)
}
func (m *UpdateAzureServiceBusIntegrationRequest) XXX_DiscardUnknown() {
xxx_messageInfo_UpdateAzureServiceBusIntegrationRequest.DiscardUnknown(m)
}
var xxx_messageInfo_UpdateAzureServiceBusIntegrationRequest proto.InternalMessageInfo
func (m *UpdateAzureServiceBusIntegrationRequest) GetIntegration() *AzureServiceBusIntegration {
if m != nil {
return m.Integration
}
return nil
}
type DeleteAzureServiceBusIntegrationRequest struct {
// The id of the application.
ApplicationId int64 `protobuf:"varint,1,opt,name=application_id,json=applicationID,proto3" json:"application_id,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *DeleteAzureServiceBusIntegrationRequest) Reset() {
*m = DeleteAzureServiceBusIntegrationRequest{}
}
func (m *DeleteAzureServiceBusIntegrationRequest) String() string { return proto.CompactTextString(m) }
func (*DeleteAzureServiceBusIntegrationRequest) ProtoMessage() {}
func (*DeleteAzureServiceBusIntegrationRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_0774996cc1ba5bfc, []int{62}
}
func (m *DeleteAzureServiceBusIntegrationRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_DeleteAzureServiceBusIntegrationRequest.Unmarshal(m, b)
}
func (m *DeleteAzureServiceBusIntegrationRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_DeleteAzureServiceBusIntegrationRequest.Marshal(b, m, deterministic)
}
func (m *DeleteAzureServiceBusIntegrationRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_DeleteAzureServiceBusIntegrationRequest.Merge(m, src)
}
func (m *DeleteAzureServiceBusIntegrationRequest) XXX_Size() int {
return xxx_messageInfo_DeleteAzureServiceBusIntegrationRequest.Size(m)
}
func (m *DeleteAzureServiceBusIntegrationRequest) XXX_DiscardUnknown() {
xxx_messageInfo_DeleteAzureServiceBusIntegrationRequest.DiscardUnknown(m)
}
var xxx_messageInfo_DeleteAzureServiceBusIntegrationRequest proto.InternalMessageInfo
func (m *DeleteAzureServiceBusIntegrationRequest) GetApplicationId() int64 {
if m != nil {
return m.ApplicationId
}
return 0
}
type PilotThingsIntegration struct {
// Application ID.
ApplicationId int64 `protobuf:"varint,1,opt,name=application_id,json=applicationID,proto3" json:"application_id,omitempty"`
// Server URL
Server string `protobuf:"bytes,2,opt,name=server,proto3" json:"server,omitempty"`
// Authentication token
Token string `protobuf:"bytes,3,opt,name=token,proto3" json:"token,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *PilotThingsIntegration) Reset() { *m = PilotThingsIntegration{} }
func (m *PilotThingsIntegration) String() string { return proto.CompactTextString(m) }
func (*PilotThingsIntegration) ProtoMessage() {}
func (*PilotThingsIntegration) Descriptor() ([]byte, []int) {
return fileDescriptor_0774996cc1ba5bfc, []int{63}
}
func (m *PilotThingsIntegration) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_PilotThingsIntegration.Unmarshal(m, b)
}
func (m *PilotThingsIntegration) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_PilotThingsIntegration.Marshal(b, m, deterministic)
}
func (m *PilotThingsIntegration) XXX_Merge(src proto.Message) {
xxx_messageInfo_PilotThingsIntegration.Merge(m, src)
}
func (m *PilotThingsIntegration) XXX_Size() int {
return xxx_messageInfo_PilotThingsIntegration.Size(m)
}
func (m *PilotThingsIntegration) XXX_DiscardUnknown() {
xxx_messageInfo_PilotThingsIntegration.DiscardUnknown(m)
}
var xxx_messageInfo_PilotThingsIntegration proto.InternalMessageInfo
func (m *PilotThingsIntegration) GetApplicationId() int64 {
if m != nil {
return m.ApplicationId
}
return 0
}
func (m *PilotThingsIntegration) GetServer() string {
if m != nil {
return m.Server
}
return ""
}
func (m *PilotThingsIntegration) GetToken() string {
if m != nil {
return m.Token
}
return ""
}
type CreatePilotThingsIntegrationRequest struct {
// Integration object to create.
Integration *PilotThingsIntegration `protobuf:"bytes,1,opt,name=integration,proto3" json:"integration,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *CreatePilotThingsIntegrationRequest) Reset() { *m = CreatePilotThingsIntegrationRequest{} }
func (m *CreatePilotThingsIntegrationRequest) String() string { return proto.CompactTextString(m) }
func (*CreatePilotThingsIntegrationRequest) ProtoMessage() {}
func (*CreatePilotThingsIntegrationRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_0774996cc1ba5bfc, []int{64}
}
func (m *CreatePilotThingsIntegrationRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CreatePilotThingsIntegrationRequest.Unmarshal(m, b)
}
func (m *CreatePilotThingsIntegrationRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_CreatePilotThingsIntegrationRequest.Marshal(b, m, deterministic)
}
func (m *CreatePilotThingsIntegrationRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_CreatePilotThingsIntegrationRequest.Merge(m, src)
}
func (m *CreatePilotThingsIntegrationRequest) XXX_Size() int {
return xxx_messageInfo_CreatePilotThingsIntegrationRequest.Size(m)
}
func (m *CreatePilotThingsIntegrationRequest) XXX_DiscardUnknown() {
xxx_messageInfo_CreatePilotThingsIntegrationRequest.DiscardUnknown(m)
}
var xxx_messageInfo_CreatePilotThingsIntegrationRequest proto.InternalMessageInfo
func (m *CreatePilotThingsIntegrationRequest) GetIntegration() *PilotThingsIntegration {
if m != nil {
return m.Integration
}
return nil
}
type GetPilotThingsIntegrationRequest struct {
// Application ID.
ApplicationId int64 `protobuf:"varint,1,opt,name=application_id,json=applicationID,proto3" json:"application_id,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GetPilotThingsIntegrationRequest) Reset() { *m = GetPilotThingsIntegrationRequest{} }
func (m *GetPilotThingsIntegrationRequest) String() string { return proto.CompactTextString(m) }
func (*GetPilotThingsIntegrationRequest) ProtoMessage() {}
func (*GetPilotThingsIntegrationRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_0774996cc1ba5bfc, []int{65}
}
func (m *GetPilotThingsIntegrationRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetPilotThingsIntegrationRequest.Unmarshal(m, b)
}
func (m *GetPilotThingsIntegrationRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetPilotThingsIntegrationRequest.Marshal(b, m, deterministic)
}
func (m *GetPilotThingsIntegrationRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetPilotThingsIntegrationRequest.Merge(m, src)
}
func (m *GetPilotThingsIntegrationRequest) XXX_Size() int {
return xxx_messageInfo_GetPilotThingsIntegrationRequest.Size(m)
}
func (m *GetPilotThingsIntegrationRequest) XXX_DiscardUnknown() {
xxx_messageInfo_GetPilotThingsIntegrationRequest.DiscardUnknown(m)
}
var xxx_messageInfo_GetPilotThingsIntegrationRequest proto.InternalMessageInfo
func (m *GetPilotThingsIntegrationRequest) GetApplicationId() int64 {
if m != nil {
return m.ApplicationId
}
return 0
}
type GetPilotThingsIntegrationResponse struct {
// Integration object.
Integration *PilotThingsIntegration `protobuf:"bytes,1,opt,name=integration,proto3" json:"integration,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GetPilotThingsIntegrationResponse) Reset() { *m = GetPilotThingsIntegrationResponse{} }
func (m *GetPilotThingsIntegrationResponse) String() string { return proto.CompactTextString(m) }
func (*GetPilotThingsIntegrationResponse) ProtoMessage() {}
func (*GetPilotThingsIntegrationResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_0774996cc1ba5bfc, []int{66}
}
func (m *GetPilotThingsIntegrationResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetPilotThingsIntegrationResponse.Unmarshal(m, b)
}
func (m *GetPilotThingsIntegrationResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetPilotThingsIntegrationResponse.Marshal(b, m, deterministic)
}
func (m *GetPilotThingsIntegrationResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetPilotThingsIntegrationResponse.Merge(m, src)
}
func (m *GetPilotThingsIntegrationResponse) XXX_Size() int {
return xxx_messageInfo_GetPilotThingsIntegrationResponse.Size(m)
}
func (m *GetPilotThingsIntegrationResponse) XXX_DiscardUnknown() {
xxx_messageInfo_GetPilotThingsIntegrationResponse.DiscardUnknown(m)
}
var xxx_messageInfo_GetPilotThingsIntegrationResponse proto.InternalMessageInfo
func (m *GetPilotThingsIntegrationResponse) GetIntegration() *PilotThingsIntegration {
if m != nil {
return m.Integration
}
return nil
}
type UpdatePilotThingsIntegrationRequest struct {
// Integration object to update.
Integration *PilotThingsIntegration `protobuf:"bytes,1,opt,name=integration,proto3" json:"integration,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *UpdatePilotThingsIntegrationRequest) Reset() { *m = UpdatePilotThingsIntegrationRequest{} }
func (m *UpdatePilotThingsIntegrationRequest) String() string { return proto.CompactTextString(m) }
func (*UpdatePilotThingsIntegrationRequest) ProtoMessage() {}
func (*UpdatePilotThingsIntegrationRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_0774996cc1ba5bfc, []int{67}
}
func (m *UpdatePilotThingsIntegrationRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_UpdatePilotThingsIntegrationRequest.Unmarshal(m, b)
}
func (m *UpdatePilotThingsIntegrationRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_UpdatePilotThingsIntegrationRequest.Marshal(b, m, deterministic)
}
func (m *UpdatePilotThingsIntegrationRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_UpdatePilotThingsIntegrationRequest.Merge(m, src)
}
func (m *UpdatePilotThingsIntegrationRequest) XXX_Size() int {
return xxx_messageInfo_UpdatePilotThingsIntegrationRequest.Size(m)
}
func (m *UpdatePilotThingsIntegrationRequest) XXX_DiscardUnknown() {
xxx_messageInfo_UpdatePilotThingsIntegrationRequest.DiscardUnknown(m)
}
var xxx_messageInfo_UpdatePilotThingsIntegrationRequest proto.InternalMessageInfo
func (m *UpdatePilotThingsIntegrationRequest) GetIntegration() *PilotThingsIntegration {
if m != nil {
return m.Integration
}
return nil
}
type DeletePilotThingsIntegrationRequest struct {
// The id of the application.
ApplicationId int64 `protobuf:"varint,1,opt,name=application_id,json=applicationID,proto3" json:"application_id,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *DeletePilotThingsIntegrationRequest) Reset() { *m = DeletePilotThingsIntegrationRequest{} }
func (m *DeletePilotThingsIntegrationRequest) String() string { return proto.CompactTextString(m) }
func (*DeletePilotThingsIntegrationRequest) ProtoMessage() {}
func (*DeletePilotThingsIntegrationRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_0774996cc1ba5bfc, []int{68}
}
func (m *DeletePilotThingsIntegrationRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_DeletePilotThingsIntegrationRequest.Unmarshal(m, b)
}
func (m *DeletePilotThingsIntegrationRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_DeletePilotThingsIntegrationRequest.Marshal(b, m, deterministic)
}
func (m *DeletePilotThingsIntegrationRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_DeletePilotThingsIntegrationRequest.Merge(m, src)
}
func (m *DeletePilotThingsIntegrationRequest) XXX_Size() int {
return xxx_messageInfo_DeletePilotThingsIntegrationRequest.Size(m)
}
func (m *DeletePilotThingsIntegrationRequest) XXX_DiscardUnknown() {
xxx_messageInfo_DeletePilotThingsIntegrationRequest.DiscardUnknown(m)
}
var xxx_messageInfo_DeletePilotThingsIntegrationRequest proto.InternalMessageInfo
func (m *DeletePilotThingsIntegrationRequest) GetApplicationId() int64 {
if m != nil {
return m.ApplicationId
}
return 0
}
func init() {
proto.RegisterEnum("api.IntegrationKind", IntegrationKind_name, IntegrationKind_value)
proto.RegisterEnum("api.Marshaler", Marshaler_name, Marshaler_value)
proto.RegisterEnum("api.InfluxDBPrecision", InfluxDBPrecision_name, InfluxDBPrecision_value)
proto.RegisterType((*Application)(nil), "api.Application")
proto.RegisterType((*ApplicationKeys)(nil), "api.ApplicationKeys")
proto.RegisterType((*ApplicationListItem)(nil), "api.ApplicationListItem")
proto.RegisterType((*CreateApplicationRequest)(nil), "api.CreateApplicationRequest")
proto.RegisterType((*CreateApplicationResponse)(nil), "api.CreateApplicationResponse")
proto.RegisterType((*GetApplicationRequest)(nil), "api.GetApplicationRequest")
proto.RegisterType((*GetApplicationResponse)(nil), "api.GetApplicationResponse")
proto.RegisterType((*UpdateApplicationRequest)(nil), "api.UpdateApplicationRequest")
proto.RegisterType((*DeleteApplicationRequest)(nil), "api.DeleteApplicationRequest")
proto.RegisterType((*ListApplicationRequest)(nil), "api.ListApplicationRequest")
proto.RegisterType((*ListApplicationResponse)(nil), "api.ListApplicationResponse")
proto.RegisterType((*HTTPIntegrationHeader)(nil), "api.HTTPIntegrationHeader")
proto.RegisterType((*HTTPIntegration)(nil), "api.HTTPIntegration")
proto.RegisterType((*CreateHTTPIntegrationRequest)(nil), "api.CreateHTTPIntegrationRequest")
proto.RegisterType((*GetHTTPIntegrationRequest)(nil), "api.GetHTTPIntegrationRequest")
proto.RegisterType((*GetHTTPIntegrationResponse)(nil), "api.GetHTTPIntegrationResponse")
proto.RegisterType((*UpdateHTTPIntegrationRequest)(nil), "api.UpdateHTTPIntegrationRequest")
proto.RegisterType((*DeleteHTTPIntegrationRequest)(nil), "api.DeleteHTTPIntegrationRequest")
proto.RegisterType((*ListIntegrationRequest)(nil), "api.ListIntegrationRequest")
proto.RegisterType((*IntegrationListItem)(nil), "api.IntegrationListItem")
proto.RegisterType((*ListIntegrationResponse)(nil), "api.ListIntegrationResponse")
proto.RegisterType((*InfluxDBIntegration)(nil), "api.InfluxDBIntegration")
proto.RegisterType((*CreateInfluxDBIntegrationRequest)(nil), "api.CreateInfluxDBIntegrationRequest")
proto.RegisterType((*GetInfluxDBIntegrationRequest)(nil), "api.GetInfluxDBIntegrationRequest")
proto.RegisterType((*GetInfluxDBIntegrationResponse)(nil), "api.GetInfluxDBIntegrationResponse")
proto.RegisterType((*UpdateInfluxDBIntegrationRequest)(nil), "api.UpdateInfluxDBIntegrationRequest")
proto.RegisterType((*DeleteInfluxDBIntegrationRequest)(nil), "api.DeleteInfluxDBIntegrationRequest")
proto.RegisterType((*ThingsBoardIntegration)(nil), "api.ThingsBoardIntegration")
proto.RegisterType((*CreateThingsBoardIntegrationRequest)(nil), "api.CreateThingsBoardIntegrationRequest")
proto.RegisterType((*GetThingsBoardIntegrationRequest)(nil), "api.GetThingsBoardIntegrationRequest")
proto.RegisterType((*GetThingsBoardIntegrationResponse)(nil), "api.GetThingsBoardIntegrationResponse")
proto.RegisterType((*UpdateThingsBoardIntegrationRequest)(nil), "api.UpdateThingsBoardIntegrationRequest")
proto.RegisterType((*DeleteThingsBoardIntegrationRequest)(nil), "api.DeleteThingsBoardIntegrationRequest")
proto.RegisterType((*MyDevicesIntegration)(nil), "api.MyDevicesIntegration")
proto.RegisterType((*CreateMyDevicesIntegrationRequest)(nil), "api.CreateMyDevicesIntegrationRequest")
proto.RegisterType((*GetMyDevicesIntegrationRequest)(nil), "api.GetMyDevicesIntegrationRequest")
proto.RegisterType((*GetMyDevicesIntegrationResponse)(nil), "api.GetMyDevicesIntegrationResponse")
proto.RegisterType((*UpdateMyDevicesIntegrationRequest)(nil), "api.UpdateMyDevicesIntegrationRequest")
proto.RegisterType((*DeleteMyDevicesIntegrationRequest)(nil), "api.DeleteMyDevicesIntegrationRequest")
proto.RegisterType((*LoRaCloudIntegration)(nil), "api.LoRaCloudIntegration")
proto.RegisterType((*CreateLoRaCloudIntegrationRequest)(nil), "api.CreateLoRaCloudIntegrationRequest")
proto.RegisterType((*GetLoRaCloudIntegrationRequest)(nil), "api.GetLoRaCloudIntegrationRequest")
proto.RegisterType((*GetLoRaCloudIntegrationResponse)(nil), "api.GetLoRaCloudIntegrationResponse")
proto.RegisterType((*UpdateLoRaCloudIntegrationRequest)(nil), "api.UpdateLoRaCloudIntegrationRequest")
proto.RegisterType((*DeleteLoRaCloudIntegrationRequest)(nil), "api.DeleteLoRaCloudIntegrationRequest")
proto.RegisterType((*GCPPubSubIntegration)(nil), "api.GCPPubSubIntegration")
proto.RegisterType((*CreateGCPPubSubIntegrationRequest)(nil), "api.CreateGCPPubSubIntegrationRequest")
proto.RegisterType((*GetGCPPubSubIntegrationRequest)(nil), "api.GetGCPPubSubIntegrationRequest")
proto.RegisterType((*GetGCPPubSubIntegrationResponse)(nil), "api.GetGCPPubSubIntegrationResponse")
proto.RegisterType((*UpdateGCPPubSubIntegrationRequest)(nil), "api.UpdateGCPPubSubIntegrationRequest")
proto.RegisterType((*DeleteGCPPubSubIntegrationRequest)(nil), "api.DeleteGCPPubSubIntegrationRequest")
proto.RegisterType((*AWSSNSIntegration)(nil), "api.AWSSNSIntegration")
proto.RegisterType((*CreateAWSSNSIntegrationRequest)(nil), "api.CreateAWSSNSIntegrationRequest")
proto.RegisterType((*GetAWSSNSIntegrationRequest)(nil), "api.GetAWSSNSIntegrationRequest")
proto.RegisterType((*GetAWSSNSIntegrationResponse)(nil), "api.GetAWSSNSIntegrationResponse")
proto.RegisterType((*UpdateAWSSNSIntegrationRequest)(nil), "api.UpdateAWSSNSIntegrationRequest")
proto.RegisterType((*DeleteAWSSNSIntegrationRequest)(nil), "api.DeleteAWSSNSIntegrationRequest")
proto.RegisterType((*AzureServiceBusIntegration)(nil), "api.AzureServiceBusIntegration")
proto.RegisterType((*CreateAzureServiceBusIntegrationRequest)(nil), "api.CreateAzureServiceBusIntegrationRequest")
proto.RegisterType((*GetAzureServiceBusIntegrationRequest)(nil), "api.GetAzureServiceBusIntegrationRequest")
proto.RegisterType((*GetAzureServiceBusIntegrationResponse)(nil), "api.GetAzureServiceBusIntegrationResponse")
proto.RegisterType((*UpdateAzureServiceBusIntegrationRequest)(nil), "api.UpdateAzureServiceBusIntegrationRequest")
proto.RegisterType((*DeleteAzureServiceBusIntegrationRequest)(nil), "api.DeleteAzureServiceBusIntegrationRequest")
proto.RegisterType((*PilotThingsIntegration)(nil), "api.PilotThingsIntegration")
proto.RegisterType((*CreatePilotThingsIntegrationRequest)(nil), "api.CreatePilotThingsIntegrationRequest")
proto.RegisterType((*GetPilotThingsIntegrationRequest)(nil), "api.GetPilotThingsIntegrationRequest")
proto.RegisterType((*GetPilotThingsIntegrationResponse)(nil), "api.GetPilotThingsIntegrationResponse")
proto.RegisterType((*UpdatePilotThingsIntegrationRequest)(nil), "api.UpdatePilotThingsIntegrationRequest")
proto.RegisterType((*DeletePilotThingsIntegrationRequest)(nil), "api.DeletePilotThingsIntegrationRequest")
}
func init() {
proto.RegisterFile("as/external/api/application.proto", fileDescriptor_0774996cc1ba5bfc)
}
var fileDescriptor_0774996cc1ba5bfc = []byte{
// 3309 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x5b, 0x5d, 0x73, 0xdb, 0xc6,
0xd5, 0x0e, 0x24, 0x59, 0x16, 0x0f, 0x2d, 0x89, 0x5a, 0xd3, 0x12, 0x4d, 0x29, 0xb2, 0x04, 0x3b,
0xb6, 0xc3, 0x44, 0x92, 0x63, 0x3b, 0x5f, 0xce, 0x87, 0x43, 0x89, 0x32, 0x4d, 0x5b, 0x1f, 0x1c,
0x50, 0xb2, 0x1d, 0x4f, 0xc6, 0x08, 0x44, 0xac, 0x64, 0x44, 0x24, 0x80, 0x17, 0x00, 0x6d, 0xd3,
0xef, 0xe4, 0xe6, 0xbd, 0x78, 0x3b, 0xd3, 0xab, 0xce, 0xe4, 0xa2, 0x37, 0x99, 0x66, 0x3a, 0x9d,
0xa4, 0xd3, 0xe9, 0x4c, 0x9b, 0x99, 0xb6, 0x3f, 0x20, 0xfd, 0x01, 0xbd, 0x69, 0xa7, 0xbf, 0xa0,
0x33, 0xbd, 0xea, 0x2f, 0xe8, 0x4d, 0x67, 0x3f, 0x00, 0x82, 0x20, 0x00, 0x52, 0x22, 0x95, 0xe9,
0x95, 0xbd, 0x7b, 0xce, 0x9e, 0x7d, 0xf6, 0xd9, 0x07, 0x87, 0x8b, 0x3d, 0x10, 0x2c, 0x2a, 0xf6,
0x0a, 0x7e, 0xe1, 0x60, 0x4b, 0x57, 0x6a, 0x2b, 0x8a, 0xa9, 0xad, 0x28, 0xa6, 0x59, 0xd3, 0xaa,
0x8a, 0xa3, 0x19, 0xfa, 0xb2, 0x69, 0x19, 0x8e, 0x81, 0x86, 0x15, 0x53, 0xcb, 0xce, 0x1d, 0x18,
0xc6, 0x41, 0x0d, 0x33, 0x17, 0x5d, 0x37, 0x1c, 0xea, 0x61, 0x33, 0x97, 0xec, 0x2c, 0xb7, 0xd2,
0xd6, 0x5e, 0x63, 0x7f, 0x05, 0xd7, 0x4d, 0xa7, 0xc9, 0x8c, 0xe2, 0xb7, 0xc3, 0x90, 0xcc, 0xb7,
0xa2, 0xa2, 0x09, 0x18, 0xd2, 0xd4, 0x8c, 0xb0, 0x20, 0x5c, 0x1d, 0x96, 0x86, 0x34, 0x15, 0x21,
0x18, 0xd1, 0x95, 0x3a, 0xce, 0x0c, 0x2d, 0x08, 0x57, 0x13, 0x12, 0xfd, 0x3f, 0x5a, 0x80, 0xa4,
0x8a, 0xed, 0xaa, 0xa5, 0x99, 0x64, 0x48, 0x66, 0x98, 0x9a, 0xfc, 0x5d, 0xe8, 0x0a, 0x4c, 0x1a,
0xd6, 0x81, 0xa2, 0x6b, 0x2f, 0x69, 0x54, 0x59, 0x53, 0x33, 0x23, 0x34, 0xe4, 0x84, 0xbf, 0xbb,
0x54, 0x40, 0x6f, 0x02, 0xb2, 0xb1, 0xf5, 0x4c, 0xab, 0x62, 0xd9, 0xb4, 0x8c, 0x7d, 0xad, 0x86,
0x89, 0xef, 0x29, 0x1a, 0x31, 0xc5, 0x2d, 0x65, 0x66, 0x28, 0x15, 0xd0, 0x45, 0x18, 0x37, 0x95,
0x66, 0xcd, 0x50, 0x54, 0xb9, 0x6a, 0xa8, 0xb8, 0x9a, 0x19, 0xa5, 0x8e, 0x67, 0x78, 0xe7, 0x1a,
0xe9, 0x43, 0x37, 0x61, 0xda, 0x75, 0xc2, 0x3a, 0x71, 0xb3, 0x64, 0x06, 0x2c, 0x73, 0x9a, 0x7a,
0xa7, 0xb9, 0x75, 0x9d, 0x19, 0x2b, 0xd4, 0xe6, 0x1f, 0xa5, 0xe2, 0xb6, 0x51, 0x63, 0x6d, 0xa3,
0x0a, 0xd8, 0x3f, 0x2a, 0x03, 0xa7, 0x55, 0xbc, 0xaf, 0x34, 0x6a, 0x4e, 0x26, 0xb1, 0x20, 0x5c,
0x1d, 0x93, 0xdc, 0x26, 0x9a, 0x85, 0x84, 0xd2, 0x70, 0x0c, 0xf9, 0x0b, 0x43, 0xd3, 0x33, 0x40,
0x6d, 0x63, 0xa4, 0xe3, 0x9e, 0xa1, 0xe9, 0xe8, 0x2d, 0x48, 0x1c, 0xe2, 0xa6, 0x6c, 0x2a, 0x9a,
0x65, 0x67, 0x92, 0x0b, 0xc3, 0x57, 0x93, 0xd7, 0xd3, 0xcb, 0x8a, 0xa9, 0x2d, 0xfb, 0x76, 0xe2,
0x3e, 0x6e, 0xda, 0xd2, 0xd8, 0x21, 0x6e, 0x96, 0x89, 0x97, 0xb8, 0x06, 0x93, 0x01, 0x23, 0x9a,
0x81, 0xd3, 0x8a, 0x69, 0xca, 0xb8, 0xa1, 0xd1, 0xfd, 0x4a, 0x48, 0xa3, 0x8a, 0x69, 0xae, 0xef,
0x96, 0x5c, 0xc3, 0x21, 0x6e, 0xf2, 0x6d, 0x23, 0x86, 0xfb, 0xb8, 0x29, 0xfe, 0x65, 0x08, 0xce,
0xfa, 0xa2, 0x6c, 0x68, 0xb6, 0x53, 0x72, 0x70, 0xfd, 0xbf, 0x7b, 0xd3, 0xaf, 0x41, 0x3a, 0xe8,
0x4d, 0xc1, 0xb1, 0xbd, 0x47, 0xed, 0xfe, 0x5b, 0x04, 0xea, 0x8f, 0xb7, 0x2b, 0x5b, 0x90, 0x59,
0xb3, 0xb0, 0xe2, 0x60, 0x9f, 0x8b, 0x84, 0xff, 0xa7, 0x81, 0x6d, 0x07, 0x5d, 0x87, 0xa4, 0xef,
0x71, 0xa5, 0xec, 0x26, 0xaf, 0xa7, 0x82, 0x01, 0x25, 0xbf, 0x93, 0xf8, 0x06, 0x9c, 0x0f, 0x89,
0x67, 0x9b, 0x86, 0x6e, 0xe3, 0xe0, 0x2e, 0x89, 0x57, 0xe0, 0x5c, 0x11, 0x3b, 0x21, 0x33, 0x07,
0x1d, 0x37, 0x60, 0x3a, 0xe8, 0xc8, 0x43, 0x1e, 0x07, 0xe3, 0x16, 0x64, 0x76, 0x4d, 0x75, 0x70,
0x6b, 0xce, 0x41, 0xa6, 0x80, 0x6b, 0x38, 0x34, 0x5e, 0x70, 0x25, 0x3f, 0x11, 0x60, 0x9a, 0xa8,
0x36, 0xc4, 0x35, 0x0d, 0xa7, 0x6a, 0x5a, 0x5d, 0x73, 0xb8, 0x37, 0x6b, 0xa0, 0x69, 0x18, 0x35,
0xf6, 0xf7, 0x6d, 0xec, 0x50, 0x2d, 0x0f, 0x4b, 0xbc, 0x15, 0xa6, 0xd5, 0xe1, 0x50, 0xad, 0x4e,
0xc3, 0xa8, 0x8d, 0x15, 0xab, 0xfa, 0x94, 0x6a, 0x39, 0x21, 0xf1, 0x96, 0x58, 0x83, 0x99, 0x0e,
0x20, 0x9c, 0xd4, 0x0b, 0x90, 0x74, 0x0c, 0x47, 0xa9, 0xc9, 0x55, 0xa3, 0xa1, 0xbb, 0x78, 0x80,
0x76, 0xad, 0x91, 0x1e, 0x74, 0x0d, 0x46, 0x2d, 0x6c, 0x13, 0x79, 0x0e, 0x51, 0x95, 0x65, 0x82,
0x04, 0xb9, 0x0f, 0xa6, 0xc4, 0xfd, 0xc4, 0xdb, 0x70, 0xee, 0xee, 0xce, 0x4e, 0xb9, 0xa4, 0x3b,
0xf8, 0xc0, 0xa2, 0x2e, 0x77, 0xb1, 0xa2, 0x62, 0x0b, 0xa5, 0x60, 0x98, 0x3c, 0xe6, 0xec, 0xf9,
0x27, 0xff, 0x25, 0x3c, 0x3c, 0x53, 0x6a, 0x0d, 0xf7, 0xe1, 0x65, 0x0d, 0xf1, 0xdf, 0x23, 0x30,
0x19, 0x88, 0x80, 0x5e, 0x83, 0x09, 0xdf, 0x3e, 0xc8, 0x1e, 0xd1, 0xe3, 0xbe, 0xde, 0x52, 0x01,
0xdd, 0x84, 0xd3, 0x4f, 0xe9, 0x64, 0x36, 0x87, 0x9b, 0xa5, 0x70, 0x43, 0xf1, 0x48, 0xae, 0x2b,
0xba, 0x0c, 0x93, 0x0d, 0xb3, 0xa6, 0xe9, 0x87, 0xb2, 0xaa, 0x38, 0x8a, 0xdc, 0xb0, 0x6a, 0x3c,
0x65, 0x8c, 0xb3, 0xee, 0x82, 0xe2, 0x28, 0xbb, 0xd2, 0x06, 0xba, 0x0e, 0xe7, 0xc8, 0xc3, 0x28,
0xeb, 0x86, 0xa3, 0xed, 0xbb, 0x50, 0x88, 0x37, 0xa3, 0xfb, 0x2c, 0x31, 0x6e, 0xf9, 0x6c, 0x64,
0xcc, 0x35, 0x48, 0x2b, 0xd5, 0xc3, 0xce, 0x21, 0x2c, 0x83, 0x20, 0xa5, 0x7a, 0x18, 0x1c, 0x71,
0x13, 0xa6, 0xb1, 0x65, 0x19, 0x56, 0xe7, 0x18, 0x96, 0x45, 0xd2, 0xd4, 0x1a, 0x1c, 0xf5, 0x0e,
0xcc, 0xd8, 0x8e, 0xe2, 0x34, 0xec, 0xce, 0x61, 0xec, 0xa7, 0xe4, 0x1c, 0x33, 0x07, 0xc7, 0xdd,
0x82, 0xf3, 0x35, 0x83, 0x3b, 0x77, 0x8c, 0x64, 0x3f, 0x27, 0x33, 0xae, 0x43, 0x70, 0xec, 0xdb,
0x30, 0xe3, 0xbc, 0x90, 0x43, 0x97, 0x97, 0x60, 0x50, 0x9d, 0x17, 0xf9, 0xce, 0x05, 0x7e, 0x02,
0x73, 0x5a, 0x6b, 0x33, 0x3a, 0xc7, 0x02, 0x1d, 0x9b, 0xf5, 0xf9, 0x04, 0x23, 0xbc, 0x09, 0x89,
0xba, 0x62, 0xd9, 0x4f, 0x95, 0x1a, 0xb6, 0x32, 0xc9, 0x05, 0xe1, 0xea, 0xc4, 0xf5, 0x09, 0xba,
0xd1, 0x9b, 0x6e, 0xaf, 0xd4, 0x72, 0x20, 0x29, 0x1c, 0x3f, 0xc3, 0xba, 0x23, 0x63, 0x5d, 0x35,
0x0d, 0x4d, 0x77, 0xe8, 0x2c, 0x67, 0x58, 0x0a, 0xa7, 0x96, 0x75, 0x6e, 0xd8, 0x95, 0x36, 0xc4,
0x07, 0x30, 0xc7, 0xd2, 0x5a, 0x40, 0x34, 0xee, 0xb3, 0xfb, 0x0e, 0x24, 0x7d, 0xc8, 0x78, 0xda,
0x48, 0x87, 0xc9, 0x4c, 0xf2, 0x3b, 0x8a, 0xab, 0x70, 0xbe, 0x88, 0x9d, 0x88, 0xa0, 0xbd, 0xc9,
0x5b, 0xdc, 0x81, 0x6c, 0x58, 0x0c, 0xfe, 0x2c, 0x1f, 0x17, 0xd9, 0x03, 0x98, 0x63, 0x49, 0x72,
0xc0, 0x2b, 0x5e, 0x87, 0x39, 0x96, 0x2c, 0xfb, 0x5b, 0xf4, 0x6d, 0x96, 0x46, 0xfb, 0x09, 0x70,
0xd6, 0x37, 0xd8, 0x3b, 0x48, 0x5c, 0x85, 0x91, 0x43, 0x4d, 0x67, 0x63, 0x26, 0xf8, 0x7a, 0x7c,
0x7e, 0xf7, 0x35, 0x5d, 0x95, 0xa8, 0x87, 0x9b, 0x3f, 0xc3, 0x38, 0x3f, 0x66, 0xfe, 0x0c, 0xc1,
0xe3, 0xe5, 0xcf, 0x9f, 0x0e, 0x11, 0xbc, 0xfb, 0xb5, 0xc6, 0x8b, 0xc2, 0xea, 0x31, 0x52, 0x60,
0x16, 0xc6, 0x5c, 0x9d, 0xf3, 0xb4, 0xea, 0xb5, 0xc9, 0x4f, 0x94, 0xba, 0xc7, 0x73, 0xdb, 0x90,
0xba, 0x47, 0x7c, 0x1b, 0x36, 0x39, 0xb1, 0xd7, 0x31, 0xcf, 0x61, 0x5e, 0x9b, 0xd8, 0x4c, 0xc5,
0xb6, 0x9f, 0x1b, 0x96, 0x7b, 0xdc, 0xf1, 0xda, 0x24, 0x11, 0x5a, 0xd8, 0xc1, 0x3a, 0x05, 0x62,
0x1a, 0x35, 0xad, 0xda, 0xf4, 0x9f, 0x73, 0xce, 0x7a, 0xc6, 0x32, 0xb5, 0xd1, 0x83, 0xce, 0x4d,
0x48, 0x98, 0x16, 0xae, 0x6a, 0x36, 0xd1, 0xd0, 0x69, 0xca, 0xf9, 0x34, 0xe7, 0x82, 0xad, 0xb5,
0xec, 0x5a, 0xa5, 0x96, 0xa3, 0xf8, 0x04, 0x16, 0xd8, 0xd3, 0x18, 0xc2, 0x88, 0x2b, 0x83, 0x5b,
0x61, 0xfa, 0xcc, 0xb4, 0xc5, 0x8e, 0xd4, 0xe8, 0x1d, 0x78, 0xb5, 0x88, 0x9d, 0x98, 0xe0, 0x3d,
0x6a, 0xec, 0x33, 0x98, 0x8f, 0x8a, 0xc3, 0x95, 0xd2, 0x0f, 0xca, 0x27, 0xb0, 0xc0, 0x9e, 0xd0,
0x13, 0x62, 0xa1, 0x04, 0x0b, 0xec, 0x49, 0xed, 0x9f, 0x88, 0x87, 0x30, 0xbd, 0xf3, 0x54, 0xd3,
0x0f, 0xec, 0x55, 0x43, 0xb1, 0xd4, 0x63, 0xe8, 0x97, 0x1e, 0x62, 0xac, 0x67, 0xd8, 0x72, 0xdf,
0x07, 0x58, 0x4b, 0x54, 0xe1, 0x22, 0x53, 0x42, 0x78, 0x78, 0x17, 0xe6, 0x47, 0x61, 0x34, 0xcc,
0x52, 0x1a, 0x22, 0x06, 0x06, 0x99, 0x28, 0x62, 0x27, 0x7e, 0x8a, 0x1e, 0x99, 0xd8, 0x83, 0xc5,
0x98, 0x50, 0x5c, 0x15, 0x7d, 0xc2, 0x55, 0xe1, 0x22, 0x13, 0xc6, 0x89, 0x92, 0xb2, 0x01, 0x17,
0x99, 0x3c, 0x06, 0xc2, 0xcb, 0xa7, 0x90, 0xde, 0x6c, 0x16, 0x30, 0x79, 0x11, 0xb2, 0x07, 0x9b,
0xdf, 0xc4, 0xcf, 0x61, 0x91, 0x69, 0x24, 0x6c, 0x02, 0x17, 0xe6, 0x07, 0x61, 0x64, 0x9c, 0x67,
0xc7, 0x87, 0xb0, 0x61, 0x6d, 0x54, 0x14, 0xe9, 0x73, 0x1e, 0x17, 0xbe, 0x47, 0x16, 0x9e, 0xc0,
0x85, 0xc8, 0x40, 0x5c, 0x1b, 0x7d, 0x01, 0xfd, 0x1c, 0x16, 0x99, 0x32, 0x4e, 0x8c, 0x8a, 0x7b,
0xb0, 0xc8, 0x54, 0x31, 0x00, 0x36, 0xfe, 0x39, 0x0a, 0xe9, 0x0d, 0x43, 0x52, 0xd6, 0x6a, 0x46,
0xe3, 0x38, 0x49, 0x63, 0x01, 0x92, 0x07, 0xd8, 0x70, 0xcf, 0xa9, 0x54, 0x17, 0x63, 0x92, 0xbf,
0x0b, 0xbd, 0x01, 0x53, 0xbe, 0xa6, 0xec, 0x18, 0x87, 0xd8, 0xbd, 0x18, 0x48, 0xf9, 0x0c, 0x3b,
0xa4, 0x9f, 0x1c, 0xc1, 0xfd, 0xce, 0x7b, 0x8d, 0xfd, 0x7d, 0x6c, 0xc9, 0x8e, 0xc3, 0x4e, 0xfa,
0xe3, 0x52, 0xda, 0x67, 0x5d, 0xa5, 0xc6, 0x9d, 0x9d, 0x0d, 0xf4, 0x11, 0xcc, 0xfa, 0x47, 0xd5,
0x35, 0x6f, 0xa4, 0xad, 0xbd, 0xc4, 0xf4, 0x47, 0x74, 0x5c, 0xca, 0xf8, 0x5c, 0x36, 0x35, 0x3e,
0xba, 0xa2, 0xbd, 0xc4, 0xe8, 0x75, 0x48, 0xb5, 0x21, 0x54, 0x0d, 0x85, 0xfe, 0x9e, 0x8e, 0x49,
0x93, 0x7e, 0x80, 0x85, 0xed, 0x7c, 0xd0, 0xd5, 0xb2, 0x6d, 0x8d, 0xfe, 0xa4, 0xb6, 0xbb, 0x4a,
0x95, 0x4a, 0x29, 0xe8, 0x7a, 0xa0, 0xdb, 0x36, 0x3d, 0xd6, 0xb7, 0xbb, 0x16, 0xb7, 0x2a, 0x15,
0xb4, 0x06, 0xf3, 0x41, 0x57, 0xd9, 0xbd, 0x67, 0xda, 0xd7, 0x70, 0x4d, 0xe5, 0xa7, 0xfa, 0xd9,
0xc0, 0xc0, 0x32, 0xf3, 0xb9, 0x43, 0x5c, 0xd0, 0xc7, 0x30, 0xd7, 0x11, 0xa4, 0x61, 0x63, 0xd9,
0x7a, 0x21, 0x3b, 0x5a, 0x1d, 0xf3, 0x8b, 0x8c, 0x4c, 0x20, 0xc4, 0xae, 0x8d, 0xa5, 0x17, 0x3b,
0x5a, 0xbd, 0x83, 0x85, 0xe7, 0xda, 0xbe, 0x46, 0x4f, 0xf8, 0xed, 0x78, 0x1f, 0x6a, 0xfb, 0x5a,
0x10, 0x2f, 0x71, 0x0d, 0xe0, 0x3d, 0xd3, 0x81, 0x97, 0x0c, 0x6c, 0xc3, 0x9b, 0x82, 0x61, 0x55,
0xb1, 0x33, 0xe3, 0x74, 0x0a, 0xf2, 0x5f, 0x34, 0x0b, 0x09, 0x55, 0xb1, 0xb9, 0x42, 0x26, 0x58,
0x86, 0x51, 0x15, 0x9b, 0x29, 0xe3, 0x12, 0x4c, 0x10, 0x63, 0xdd, 0x50, 0x71, 0x5d, 0x36, 0x0d,
0xcb, 0xc9, 0x4c, 0xd2, 0x6d, 0x3d, 0xa3, 0x2a, 0xf6, 0x26, 0xe9, 0x2c, 0x1b, 0x96, 0x83, 0x44,
0x18, 0x27, 0x5e, 0x8c, 0x41, 0xe2, 0x94, 0xa2, 0x4e, 0x49, 0x55, 0xb1, 0x29, 0x61, 0xc4, 0x67,
0x19, 0xd2, 0x9e, 0x8f, 0x9f, 0xa0, 0x29, 0x8a, 0x24, 0xc5, 0x5d, 0x5b, 0xc4, 0xac, 0xc3, 0x05,
0xe2, 0x6f, 0x3b, 0x16, 0x56, 0xea, 0x9a, 0x7e, 0x20, 0xb3, 0x55, 0xc9, 0xcf, 0x0d, 0xeb, 0x50,
0xb1, 0x8c, 0x86, 0xae, 0x66, 0x10, 0x1d, 0x3a, 0xa7, 0x2a, 0x76, 0xc5, 0xf5, 0x2a, 0x52, 0xa7,
0x87, 0x9e, 0x4f, 0x2b, 0x45, 0x86, 0x3d, 0x6e, 0x3d, 0xe4, 0x85, 0xd0, 0x61, 0x21, 0x29, 0x32,
0x2e, 0xfc, 0x91, 0x52, 0x64, 0x78, 0xa0, 0xee, 0x29, 0xb2, 0x3b, 0x50, 0x2f, 0x45, 0x9e, 0x18,
0x15, 0x5e, 0x8a, 0x1c, 0x00, 0x1b, 0x7f, 0x13, 0x20, 0x5d, 0x5c, 0x2b, 0x97, 0x1b, 0x7b, 0x95,
0xc6, 0xde, 0x31, 0x52, 0x64, 0xdb, 0x3b, 0xf3, 0x50, 0xb7, 0x77, 0xe6, 0xd7, 0x21, 0x55, 0xb5,
0xb0, 0x4a, 0x4e, 0xf1, 0x4a, 0xcd, 0x96, 0xf7, 0xb5, 0x1a, 0xe6, 0xd9, 0x72, 0xd2, 0xd7, 0x7f,
0x47, 0xab, 0x61, 0xf4, 0x2a, 0x80, 0x69, 0x19, 0x5f, 0xe0, 0xaa, 0xe3, 0xde, 0xa2, 0x26, 0xc8,
0x09, 0x9e, 0xf6, 0x94, 0x0a, 0xc4, 0xec, 0x18, 0xa6, 0x56, 0x65, 0x2f, 0x08, 0xec, 0x4d, 0x22,
0x41, 0x7b, 0xc8, 0x6b, 0x41, 0x4b, 0x8f, 0x61, 0x6b, 0xeb, 0x61, 0x13, 0x42, 0x87, 0x85, 0xe8,
0x31, 0x2e, 0xfc, 0x91, 0xf4, 0x18, 0x1e, 0xa8, 0xbb, 0x1e, 0xbb, 0x03, 0xf5, 0xf4, 0x78, 0x62,
0x54, 0x78, 0x7a, 0x1c, 0x00, 0x1b, 0xff, 0x12, 0x60, 0x2a, 0xff, 0xb0, 0x52, 0xd9, 0xaa, 0x9c,
0xb8, 0x18, 0xa7, 0xc9, 0x3b, 0xf4, 0x41, 0xeb, 0x26, 0x9f, 0xb7, 0x48, 0x9a, 0x55, 0xaa, 0x55,
0x6c, 0xdb, 0xf2, 0x21, 0x6e, 0xb6, 0xc4, 0x97, 0x64, 0x9d, 0xf7, 0x71, 0xb3, 0x54, 0x40, 0x39,
0x98, 0xb2, 0x71, 0xd5, 0xc2, 0x8e, 0xdc, 0x72, 0xe5, 0x2a, 0x9c, 0x64, 0x86, 0xbc, 0xeb, 0x4d,
0x32, 0x3f, 0x93, 0xaa, 0x62, 0xe9, 0xfc, 0x55, 0x76, 0x8c, 0x76, 0xe4, 0xa5, 0x2d, 0xf1, 0x31,
0xcc, 0xf3, 0xeb, 0xee, 0xe0, 0xa2, 0x5d, 0xe2, 0xde, 0x0b, 0xdb, 0x1a, 0xf6, 0x8e, 0xdb, 0x39,
0xa6, 0x6d, 0x5f, 0x0a, 0x30, 0x5b, 0xc4, 0x4e, 0x64, 0xe0, 0x1e, 0x77, 0xe4, 0x11, 0xcc, 0x85,
0x47, 0xe1, 0xe2, 0x3c, 0x3e, 0xbe, 0xc7, 0x30, 0xcf, 0xaf, 0xd1, 0x07, 0xbf, 0xf6, 0x22, 0xcc,
0xf3, 0x2b, 0xf5, 0x3e, 0x97, 0xff, 0x83, 0x00, 0xd9, 0xfc, 0xcb, 0x86, 0x85, 0x2b, 0xac, 0xca,
0xb2, 0xda, 0xb0, 0x4f, 0x5c, 0x99, 0x6f, 0xc0, 0x54, 0xd5, 0xd0, 0x75, 0x5c, 0xa5, 0x31, 0x6d,
0xc7, 0xd2, 0xf4, 0x03, 0xf7, 0x54, 0xd9, 0x32, 0x54, 0x68, 0x3f, 0x5a, 0x84, 0x33, 0x66, 0x63,
0xaf, 0xa6, 0xd9, 0x4f, 0x65, 0xdf, 0x8d, 0x4b, 0x92, 0xf7, 0xd1, 0x6c, 0x58, 0x83, 0x2b, 0x5c,
0x64, 0x91, 0x0b, 0x71, 0x59, 0xc9, 0x87, 0x31, 0x7e, 0x81, 0x31, 0x1e, 0x3d, 0xb8, 0x8d, 0xfa,
0x4d, 0xb8, 0x44, 0x04, 0xd3, 0x75, 0xaa, 0x1e, 0x37, 0xe0, 0x0b, 0x78, 0xad, 0x4b, 0x38, 0x2e,
0xc4, 0x01, 0x40, 0xaf, 0xc1, 0x15, 0xae, 0xc8, 0x1f, 0x83, 0xa8, 0x32, 0x5c, 0xe1, 0x1a, 0x1d,
0x14, 0x57, 0x75, 0x98, 0x2e, 0x6b, 0x35, 0x83, 0x5f, 0x0f, 0x0c, 0xee, 0x9a, 0x04, 0xa5, 0xe1,
0x94, 0xff, 0xdd, 0x86, 0x35, 0x5a, 0x97, 0x27, 0xe1, 0x93, 0xf6, 0x70, 0x4f, 0x10, 0x31, 0x30,
0xe4, 0xf2, 0x24, 0x7e, 0x8a, 0x23, 0x5d, 0x9e, 0x44, 0x85, 0xea, 0x7e, 0x79, 0xd2, 0x0b, 0x5c,
0xef, 0xf2, 0xe4, 0x44, 0x49, 0xf1, 0x2e, 0x4f, 0x06, 0xc1, 0x4b, 0xee, 0x17, 0x02, 0x4c, 0x06,
0x2e, 0xa9, 0xd1, 0x18, 0x8c, 0xdc, 0xdd, 0xd9, 0x29, 0xa7, 0x5e, 0x41, 0x67, 0x60, 0xac, 0xb4,
0x75, 0x67, 0x63, 0xf7, 0x51, 0x61, 0x35, 0x25, 0xa0, 0x49, 0x48, 0xee, 0xdc, 0x2d, 0x6d, 0x15,
0x2b, 0xab, 0xdb, 0x79, 0xa9, 0x90, 0x1a, 0x42, 0xe3, 0x90, 0xd8, 0xfc, 0xb4, 0xb0, 0xfe, 0xa0,
0xb4, 0xb6, 0x5e, 0x49, 0x0d, 0x93, 0xe6, 0xc6, 0xb6, 0x94, 0x5f, 0xdb, 0xd8, 0xde, 0x2d, 0xa4,
0x46, 0xd0, 0x04, 0x40, 0x71, 0xad, 0x2c, 0x97, 0x77, 0x57, 0x2b, 0xbb, 0xab, 0xa9, 0x53, 0x28,
0x09, 0xa7, 0xf3, 0x0f, 0x2b, 0x72, 0x65, 0xab, 0x92, 0x1a, 0x45, 0xe7, 0x60, 0x2a, 0xff, 0x78,
0x57, 0x5a, 0x97, 0x2b, 0xeb, 0x12, 0x19, 0x2f, 0xaf, 0xee, 0x56, 0x52, 0xa7, 0x51, 0x0a, 0xce,
0x94, 0x4b, 0x1b, 0xdb, 0x3b, 0x32, 0x9b, 0x28, 0x35, 0x96, 0xbb, 0x06, 0x09, 0x2f, 0x53, 0x12,
0x64, 0xf7, 0x2a, 0xdb, 0x5b, 0x0c, 0x59, 0x59, 0xda, 0xde, 0xd9, 0x5e, 0xdd, 0xbd, 0x93, 0x12,
0x48, 0x68, 0xd2, 0x2f, 0x3f, 0xb8, 0x91, 0x1a, 0xca, 0xdd, 0x86, 0xa9, 0x8e, 0x2b, 0x60, 0x34,
0x0a, 0x43, 0x5b, 0x95, 0xd4, 0x2b, 0xe8, 0x14, 0x08, 0xbb, 0x29, 0x81, 0x34, 0x37, 0x2b, 0xa9,
0x21, 0xd2, 0x24, 0xc8, 0x4f, 0x81, 0xb0, 0x99, 0x1a, 0x21, 0xff, 0xdc, 0x4d, 0x9d, 0xba, 0xfe,
0xf7, 0xb7, 0x01, 0xf9, 0x0a, 0x92, 0xfc, 0xf1, 0x44, 0x18, 0x46, 0x99, 0xe6, 0xd1, 0xab, 0x74,
0xb3, 0xa2, 0x8a, 0xdf, 0xd9, 0xf9, 0x28, 0x33, 0x93, 0x99, 0x38, 0xf7, 0x7f, 0x7f, 0xfd, 0xc7,
0x57, 0x43, 0xd3, 0xe2, 0x54, 0xf0, 0xb3, 0x16, 0xfb, 0x96, 0x90, 0x43, 0x4f, 0x60, 0xb8, 0x88,
0x1d, 0xc4, 0x0a, 0x8d, 0xa1, 0x35, 0xee, 0xec, 0x6c, 0xa8, 0x8d, 0x47, 0x9f, 0xa7, 0xd1, 0x33,
0x68, 0xba, 0x23, 0xfa, 0xca, 0xff, 0x6a, 0xea, 0x97, 0x48, 0x87, 0x51, 0xa6, 0x52, 0xbe, 0x8c,
0xa8, 0x7a, 0x76, 0x76, 0x7a, 0x99, 0x7d, 0x3b, 0xb3, 0xec, 0x7e, 0x3b, 0xb3, 0xbc, 0x5e, 0x37,
0x9d, 0xa6, 0xb8, 0x44, 0x27, 0xb8, 0x92, 0x15, 0x43, 0x26, 0xf0, 0x7f, 0xa3, 0xa3, 0xa9, 0x5f,
0x92, 0xf5, 0xc8, 0x30, 0xca, 0xf4, 0xca, 0xe7, 0x8b, 0xaa, 0x77, 0x47, 0xce, 0xc7, 0x17, 0x94,
0x8b, 0x5a, 0xd0, 0x67, 0x30, 0xb2, 0xa1, 0xd9, 0x0e, 0x62, 0xac, 0x84, 0x57, 0xc8, 0xb3, 0x73,
0xe1, 0x46, 0xce, 0xd9, 0x79, 0x3a, 0xc5, 0x59, 0xd4, 0xb9, 0x23, 0xe8, 0x1b, 0x01, 0xce, 0x85,
0xd6, 0xef, 0xd0, 0xa2, 0x6f, 0x9b, 0xc3, 0x2b, 0x52, 0x91, 0x4b, 0xba, 0x4f, 0xe7, 0x5b, 0x17,
0x3f, 0x09, 0x5b, 0x52, 0x2b, 0xcc, 0x72, 0xfb, 0x13, 0xfc, 0xe5, 0x8a, 0xcf, 0x66, 0xaf, 0x3c,
0x75, 0x1c, 0x93, 0x10, 0xfc, 0x95, 0x00, 0xa8, 0xb3, 0x8a, 0x87, 0xe6, 0x5d, 0x91, 0x44, 0x60,
0xbb, 0x10, 0x69, 0xe7, 0xa4, 0x7c, 0x48, 0x41, 0xbe, 0x83, 0x6e, 0xc6, 0xef, 0x73, 0x38, 0x30,
0xca, 0x5b, 0x68, 0x15, 0x90, 0xf3, 0x16, 0x57, 0x21, 0xec, 0xc6, 0x5b, 0x76, 0x20, 0xbc, 0xfd,
0x4c, 0x80, 0x73, 0xa1, 0xf5, 0x44, 0x8e, 0x30, 0xae, 0xd6, 0x18, 0x89, 0x90, 0x93, 0x96, 0x3b,
0x1e, 0x69, 0xbf, 0x15, 0xdc, 0x6f, 0x60, 0x42, 0x0b, 0x76, 0x3e, 0xc1, 0x45, 0x17, 0x56, 0x22,
0xa1, 0x6d, 0x53, 0x68, 0x25, 0xb1, 0xd0, 0x0f, 0x79, 0x1a, 0x9d, 0x57, 0xdd, 0x23, 0x04, 0xfe,
0x4a, 0xa0, 0xdf, 0xd6, 0x84, 0x41, 0x15, 0x5d, 0x71, 0xc5, 0xe0, 0xbc, 0x18, 0xeb, 0xc3, 0x45,
0xf8, 0x09, 0x05, 0x7d, 0x0b, 0xbd, 0x77, 0x54, 0x3e, 0x5d, 0xa0, 0x94, 0xd3, 0xc8, 0x62, 0x17,
0xe7, 0xb4, 0x5b, 0x31, 0xac, 0x1b, 0xa7, 0xd9, 0x81, 0x71, 0xfa, 0xb5, 0x00, 0xe7, 0x23, 0x4b,
0x67, 0x1c, 0x6d, 0xb7, 0xd2, 0x5a, 0x24, 0x5a, 0x4e, 0x66, 0xee, 0xf8, 0x64, 0xfe, 0x51, 0x70,
0xbf, 0x66, 0x88, 0x28, 0xca, 0x5d, 0xf5, 0x69, 0x34, 0xb6, 0xba, 0x13, 0x09, 0x52, 0xa2, 0x20,
0x37, 0xc4, 0x62, 0x3f, 0x94, 0x3a, 0x74, 0xea, 0x3d, 0x32, 0x35, 0x61, 0xf5, 0xf7, 0x02, 0xfd,
0x58, 0x22, 0xaa, 0x90, 0xe8, 0x0a, 0x31, 0x1e, 0xf0, 0xe5, 0x6e, 0x6e, 0x5c, 0xb2, 0x6b, 0x74,
0x01, 0x1f, 0xa1, 0x0f, 0x8e, 0xca, 0xb2, 0x0f, 0x34, 0x25, 0x3a, 0xae, 0x12, 0xc7, 0x89, 0xee,
0xa1, 0x58, 0xd7, 0x8d, 0xe8, 0xec, 0x20, 0x89, 0xfe, 0x56, 0x70, 0xbf, 0xd1, 0x88, 0x85, 0xdd,
0x43, 0xf5, 0x2f, 0x12, 0x36, 0xa7, 0x37, 0xd7, 0x17, 0xbd, 0xbf, 0x13, 0x20, 0x1b, 0x5d, 0xd9,
0x43, 0x97, 0x7d, 0x2a, 0x8e, 0xa9, 0x46, 0x45, 0x62, 0x2c, 0x53, 0x8c, 0xf7, 0xc4, 0xf5, 0x7e,
0xa8, 0xad, 0x37, 0x55, 0x36, 0x31, 0x21, 0xf6, 0xd7, 0x02, 0xcc, 0x44, 0xd4, 0xf7, 0x90, 0x97,
0x48, 0xe3, 0xa0, 0x5e, 0x8a, 0x77, 0xe2, 0xda, 0xcd, 0x53, 0xe0, 0x1f, 0xa0, 0xf7, 0x8f, 0x4a,
0xae, 0x07, 0x96, 0x52, 0x1b, 0x5d, 0x29, 0xe4, 0xd4, 0x76, 0x2d, 0x25, 0x76, 0xa3, 0x36, 0x3b,
0x38, 0x6a, 0xbf, 0x11, 0x20, 0x1b, 0x5d, 0x78, 0xe4, 0x80, 0xbb, 0x56, 0x26, 0x23, 0x01, 0x73,
0x4a, 0x73, 0x7d, 0x52, 0x1a, 0x5d, 0x64, 0x69, 0x53, 0x6b, 0x4c, 0x61, 0xe0, 0x64, 0xd5, 0x5a,
0x33, 0x2c, 0xa5, 0x4a, 0x26, 0xf6, 0xa9, 0x35, 0x14, 0xad, 0xa7, 0xd6, 0x38, 0xa8, 0x97, 0xe2,
0x9d, 0xfa, 0x55, 0xab, 0x07, 0xd6, 0xa7, 0xd6, 0x18, 0x6a, 0xbb, 0x56, 0x75, 0x4e, 0x56, 0xad,
0x6d, 0xd4, 0xb6, 0xd4, 0x1a, 0x03, 0xb8, 0x6b, 0x91, 0x68, 0xf0, 0x6a, 0x6d, 0x51, 0xfa, 0xbd,
0xa7, 0xd6, 0xd0, 0xf2, 0x92, 0x5f, 0xad, 0x31, 0x65, 0x83, 0x93, 0x3d, 0x1f, 0x1c, 0x54, 0xcd,
0x25, 0xb3, 0xb1, 0xb7, 0x64, 0x37, 0xe8, 0xa9, 0xeb, 0x37, 0x4c, 0xaf, 0xa1, 0x78, 0x3d, 0xbd,
0xc6, 0x81, 0xbd, 0x14, 0xef, 0xd4, 0xef, 0xc9, 0xc0, 0x07, 0x97, 0xd2, 0x1b, 0x5d, 0xd6, 0x69,
0x53, 0x6c, 0x1f, 0xf4, 0x66, 0x07, 0x49, 0xef, 0x2f, 0x3d, 0xcd, 0xc6, 0x40, 0xee, 0x5a, 0x48,
0x1a, 0xfc, 0x89, 0xc0, 0x4f, 0xeb, 0x77, 0x02, 0xcc, 0x44, 0xd4, 0x63, 0xb8, 0x04, 0xe2, 0xab,
0x35, 0x91, 0xe8, 0xb6, 0x28, 0xba, 0xbb, 0xe2, 0x5a, 0x3f, 0x84, 0x2a, 0xcf, 0xed, 0x25, 0x9b,
0xdd, 0x0f, 0x7d, 0x2d, 0x40, 0x3a, 0xac, 0x2c, 0x83, 0x16, 0xbc, 0x5b, 0xa1, 0x28, 0x88, 0x8b,
0x31, 0x1e, 0x5c, 0xa2, 0xb7, 0x29, 0xda, 0xf7, 0xd1, 0xbb, 0x47, 0xe5, 0x92, 0x23, 0xa4, 0x3c,
0x46, 0xd4, 0x76, 0x38, 0x8f, 0xf1, 0x95, 0x9f, 0x6e, 0x3c, 0x66, 0x07, 0xc5, 0xe3, 0xcf, 0x05,
0x98, 0x89, 0x28, 0x14, 0x71, 0xa0, 0xf1, 0x65, 0xa4, 0x48, 0xa0, 0x9c, 0xc2, 0xdc, 0xb1, 0x29,
0xfc, 0xb3, 0xe0, 0x7e, 0xa4, 0x1a, 0x53, 0x7e, 0x7a, 0xd3, 0xaf, 0xc9, 0x6e, 0x55, 0x84, 0x48,
0xac, 0x8f, 0x28, 0x56, 0x49, 0xdc, 0xec, 0x8b, 0x54, 0x32, 0xfd, 0x12, 0xff, 0x5b, 0xa4, 0xa5,
0xbd, 0x06, 0xa5, 0xf7, 0x07, 0x81, 0x7e, 0x09, 0x1b, 0xb3, 0x82, 0xd7, 0x3d, 0x35, 0x76, 0x85,
0x9f, 0xeb, 0xc5, 0x95, 0x2b, 0xb8, 0x44, 0x97, 0xb4, 0x86, 0xf2, 0x47, 0xa6, 0x3f, 0xb8, 0x0c,
0xba, 0x11, 0xdd, 0xaa, 0x42, 0x7c, 0x23, 0x7a, 0x2c, 0x1e, 0x75, 0xdb, 0x88, 0xec, 0xe0, 0x37,
0xe2, 0x0f, 0x82, 0xfb, 0x31, 0x6e, 0xd7, 0x45, 0xf4, 0x58, 0x93, 0x8a, 0x5c, 0x04, 0xa7, 0x3e,
0x37, 0x00, 0xea, 0xff, 0xe4, 0x5d, 0x34, 0x44, 0x94, 0xb5, 0xfc, 0x17, 0x0d, 0xb1, 0x95, 0x90,
0x48, 0xb4, 0x15, 0x8a, 0x76, 0x53, 0xbc, 0xdb, 0x0f, 0xe5, 0x26, 0x99, 0x7a, 0x89, 0xbd, 0x5a,
0x12, 0xb6, 0xbf, 0x67, 0x37, 0x0d, 0x51, 0xb5, 0x38, 0x57, 0xc7, 0xf1, 0x88, 0x2f, 0x77, 0x73,
0xe3, 0x52, 0x2f, 0xd0, 0x15, 0x7c, 0x8c, 0x3e, 0x3c, 0x2a, 0xdf, 0x7e, 0xd4, 0x94, 0xea, 0xb8,
0xba, 0x55, 0xdb, 0x55, 0x43, 0x5f, 0x54, 0x67, 0x07, 0x4a, 0xf5, 0x77, 0xde, 0x5d, 0x43, 0x2c,
0xee, 0x1e, 0x8a, 0x65, 0x91, 0xb8, 0x39, 0xc1, 0xb9, 0xfe, 0x08, 0xfe, 0x7f, 0x01, 0x52, 0x81,
0xbf, 0xf7, 0xb0, 0x7d, 0xd5, 0x8a, 0x10, 0x3c, 0x73, 0xe1, 0x46, 0xbe, 0xed, 0xef, 0x52, 0x54,
0x6f, 0xa1, 0x95, 0x23, 0xa2, 0x5a, 0x7d, 0x04, 0x8b, 0x9a, 0xb1, 0x5c, 0x7d, 0xaa, 0x59, 0xa6,
0xed, 0x28, 0xd5, 0x43, 0x3a, 0x8b, 0x62, 0x2f, 0xbb, 0x7f, 0x66, 0x4d, 0xda, 0x8f, 0x6f, 0x1c,
0x68, 0x0e, 0xc6, 0xcb, 0x55, 0xa3, 0xbe, 0xa2, 0x58, 0x4d, 0xe5, 0xad, 0xeb, 0x37, 0x56, 0x5a,
0x23, 0x96, 0xc8, 0x8c, 0x07, 0xc6, 0x4a, 0xe0, 0x6f, 0xb3, 0xf7, 0x46, 0x29, 0x71, 0x37, 0xfe,
0x13, 0x00, 0x00, 0xff, 0xff, 0xeb, 0x9a, 0x78, 0x98, 0xb5, 0x3d, 0x00, 0x00,
}
// Reference imports to suppress errors if they are not otherwise used.
var _ context.Context
var _ grpc.ClientConnInterface
// This is a compile-time assertion to ensure that this generated file
// is compatible with the grpc package it is being compiled against.
const _ = grpc.SupportPackageIsVersion6
// ApplicationServiceClient is the client API for ApplicationService service.
//
// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
type ApplicationServiceClient interface {
// Create creates the given application.
Create(ctx context.Context, in *CreateApplicationRequest, opts ...grpc.CallOption) (*CreateApplicationResponse, error)
// Get returns the requested application.
Get(ctx context.Context, in *GetApplicationRequest, opts ...grpc.CallOption) (*GetApplicationResponse, error)
// Update updates the given application.
Update(ctx context.Context, in *UpdateApplicationRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
// Delete deletes the given application.
Delete(ctx context.Context, in *DeleteApplicationRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
// List lists the available applications.
List(ctx context.Context, in *ListApplicationRequest, opts ...grpc.CallOption) (*ListApplicationResponse, error)
// CreateHTTPIntegration creates a HTTP application-integration.
CreateHTTPIntegration(ctx context.Context, in *CreateHTTPIntegrationRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
// GetHTTPIntegration returns the HTTP application-integration.
GetHTTPIntegration(ctx context.Context, in *GetHTTPIntegrationRequest, opts ...grpc.CallOption) (*GetHTTPIntegrationResponse, error)
// UpdateHTTPIntegration updates the HTTP application-integration.
UpdateHTTPIntegration(ctx context.Context, in *UpdateHTTPIntegrationRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
// DeleteIntegration deletes the HTTP application-integration.
DeleteHTTPIntegration(ctx context.Context, in *DeleteHTTPIntegrationRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
// CreateInfluxDBIntegration create an InfluxDB application-integration.
CreateInfluxDBIntegration(ctx context.Context, in *CreateInfluxDBIntegrationRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
// GetInfluxDBIntegration returns the InfluxDB application-integration.
GetInfluxDBIntegration(ctx context.Context, in *GetInfluxDBIntegrationRequest, opts ...grpc.CallOption) (*GetInfluxDBIntegrationResponse, error)
// UpdateInfluxDBIntegration updates the InfluxDB application-integration.
UpdateInfluxDBIntegration(ctx context.Context, in *UpdateInfluxDBIntegrationRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
// DeleteInfluxDBIntegration deletes the InfluxDB application-integration.
DeleteInfluxDBIntegration(ctx context.Context, in *DeleteInfluxDBIntegrationRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
// CreateThingsBoardIntegration creates a ThingsBoard application-integration.
CreateThingsBoardIntegration(ctx context.Context, in *CreateThingsBoardIntegrationRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
// GetThingsBoardIntegration returns the ThingsBoard application-integration.
GetThingsBoardIntegration(ctx context.Context, in *GetThingsBoardIntegrationRequest, opts ...grpc.CallOption) (*GetThingsBoardIntegrationResponse, error)
// UpdateThingsBoardIntegration updates the ThingsBoard application-integration.
UpdateThingsBoardIntegration(ctx context.Context, in *UpdateThingsBoardIntegrationRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
// DeleteThingsBoardIntegration deletes the ThingsBoard application-integration.
DeleteThingsBoardIntegration(ctx context.Context, in *DeleteThingsBoardIntegrationRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
// CreateMyDevicesIntegration creates a MyDevices application-integration.
CreateMyDevicesIntegration(ctx context.Context, in *CreateMyDevicesIntegrationRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
// GetMyDevicesIntegration returns the MyDevices application-integration.
GetMyDevicesIntegration(ctx context.Context, in *GetMyDevicesIntegrationRequest, opts ...grpc.CallOption) (*GetMyDevicesIntegrationResponse, error)
// UpdateMyDevicesIntegration updates the MyDevices application-integration.
UpdateMyDevicesIntegration(ctx context.Context, in *UpdateMyDevicesIntegrationRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
// DeleteMyDevicesIntegration deletes the MyDevices application-integration.
DeleteMyDevicesIntegration(ctx context.Context, in *DeleteMyDevicesIntegrationRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
// CreateLoRaCloudIntegration creates A LoRaCloud application-integration.
CreateLoRaCloudIntegration(ctx context.Context, in *CreateLoRaCloudIntegrationRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
// GetLoRaCloudIntegration returns the LoRaCloud application-integration.
GetLoRaCloudIntegration(ctx context.Context, in *GetLoRaCloudIntegrationRequest, opts ...grpc.CallOption) (*GetLoRaCloudIntegrationResponse, error)
// UpdateLoRaCloudIntegration updates the LoRaCloud application-integration.
UpdateLoRaCloudIntegration(ctx context.Context, in *UpdateLoRaCloudIntegrationRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
// DeleteLoRaCloudIntegration deletes the LoRaCloud application-integration.
DeleteLoRaCloudIntegration(ctx context.Context, in *DeleteLoRaCloudIntegrationRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
// CreateGCPPubSubIntegration creates a GCP PubSub application-integration.
CreateGCPPubSubIntegration(ctx context.Context, in *CreateGCPPubSubIntegrationRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
// GetGCPPubSubIntegration returns the GCP PubSub application-integration.
GetGCPPubSubIntegration(ctx context.Context, in *GetGCPPubSubIntegrationRequest, opts ...grpc.CallOption) (*GetGCPPubSubIntegrationResponse, error)
// UpdateGCPPubSubIntegration updates the GCP PubSub application-integration.
UpdateGCPPubSubIntegration(ctx context.Context, in *UpdateGCPPubSubIntegrationRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
// DeleteGCPPubSubIntegration deletes the GCP PubSub application-integration.
DeleteGCPPubSubIntegration(ctx context.Context, in *DeleteGCPPubSubIntegrationRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
// CreateAWSSNSIntegration creates a AWS SNS application-integration.
CreateAWSSNSIntegration(ctx context.Context, in *CreateAWSSNSIntegrationRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
// GetAWSSNSIntegration returns the AWS SNS application-integration.
GetAWSSNSIntegration(ctx context.Context, in *GetAWSSNSIntegrationRequest, opts ...grpc.CallOption) (*GetAWSSNSIntegrationResponse, error)
// UpdateAWSSNSIntegration updates the AWS SNS application-integration.
UpdateAWSSNSIntegration(ctx context.Context, in *UpdateAWSSNSIntegrationRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
// DeleteAWSSNSIntegration deletes the AWS SNS application-integration.
DeleteAWSSNSIntegration(ctx context.Context, in *DeleteAWSSNSIntegrationRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
// CreateAzureServiceBusIntegration creates an Azure Service-Bus application-integration.
CreateAzureServiceBusIntegration(ctx context.Context, in *CreateAzureServiceBusIntegrationRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
// GetAzureServiceBusIntegration returns the Azure Service-Bus application-integration.
GetAzureServiceBusIntegration(ctx context.Context, in *GetAzureServiceBusIntegrationRequest, opts ...grpc.CallOption) (*GetAzureServiceBusIntegrationResponse, error)
// UpdateAzureServiceBusIntegration updates the Azure Service-Bus application-integration.
UpdateAzureServiceBusIntegration(ctx context.Context, in *UpdateAzureServiceBusIntegrationRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
// DeleteAzureServiceBusIntegration deletes the Azure Service-Bus application-integration.
DeleteAzureServiceBusIntegration(ctx context.Context, in *DeleteAzureServiceBusIntegrationRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
// CreatePilotThingsIntegration creates an Pilot Things application-integration.
CreatePilotThingsIntegration(ctx context.Context, in *CreatePilotThingsIntegrationRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
// GetPilotThingsIntegration returns the Pilot Things application-integration.
GetPilotThingsIntegration(ctx context.Context, in *GetPilotThingsIntegrationRequest, opts ...grpc.CallOption) (*GetPilotThingsIntegrationResponse, error)
// UpdatePilotThingsIntegration updates the Pilot Things application-integration.
UpdatePilotThingsIntegration(ctx context.Context, in *UpdatePilotThingsIntegrationRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
// DeletePilotThingsIntegration deletes the Pilot Things application-integration.
DeletePilotThingsIntegration(ctx context.Context, in *DeletePilotThingsIntegrationRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
// ListIntegrations lists all configured integrations.
ListIntegrations(ctx context.Context, in *ListIntegrationRequest, opts ...grpc.CallOption) (*ListIntegrationResponse, error)
}
type applicationServiceClient struct {
cc grpc.ClientConnInterface
}
func NewApplicationServiceClient(cc grpc.ClientConnInterface) ApplicationServiceClient {
return &applicationServiceClient{cc}
}
func (c *applicationServiceClient) Create(ctx context.Context, in *CreateApplicationRequest, opts ...grpc.CallOption) (*CreateApplicationResponse, error) {
out := new(CreateApplicationResponse)
err := c.cc.Invoke(ctx, "/api.ApplicationService/Create", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *applicationServiceClient) Get(ctx context.Context, in *GetApplicationRequest, opts ...grpc.CallOption) (*GetApplicationResponse, error) {
out := new(GetApplicationResponse)
err := c.cc.Invoke(ctx, "/api.ApplicationService/Get", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *applicationServiceClient) Update(ctx context.Context, in *UpdateApplicationRequest, opts ...grpc.CallOption) (*emptypb.Empty, error) {
out := new(emptypb.Empty)
err := c.cc.Invoke(ctx, "/api.ApplicationService/Update", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *applicationServiceClient) Delete(ctx context.Context, in *DeleteApplicationRequest, opts ...grpc.CallOption) (*emptypb.Empty, error) {
out := new(emptypb.Empty)
err := c.cc.Invoke(ctx, "/api.ApplicationService/Delete", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *applicationServiceClient) List(ctx context.Context, in *ListApplicationRequest, opts ...grpc.CallOption) (*ListApplicationResponse, error) {
out := new(ListApplicationResponse)
err := c.cc.Invoke(ctx, "/api.ApplicationService/List", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *applicationServiceClient) CreateHTTPIntegration(ctx context.Context, in *CreateHTTPIntegrationRequest, opts ...grpc.CallOption) (*emptypb.Empty, error) {
out := new(emptypb.Empty)
err := c.cc.Invoke(ctx, "/api.ApplicationService/CreateHTTPIntegration", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *applicationServiceClient) GetHTTPIntegration(ctx context.Context, in *GetHTTPIntegrationRequest, opts ...grpc.CallOption) (*GetHTTPIntegrationResponse, error) {
out := new(GetHTTPIntegrationResponse)
err := c.cc.Invoke(ctx, "/api.ApplicationService/GetHTTPIntegration", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *applicationServiceClient) UpdateHTTPIntegration(ctx context.Context, in *UpdateHTTPIntegrationRequest, opts ...grpc.CallOption) (*emptypb.Empty, error) {
out := new(emptypb.Empty)
err := c.cc.Invoke(ctx, "/api.ApplicationService/UpdateHTTPIntegration", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *applicationServiceClient) DeleteHTTPIntegration(ctx context.Context, in *DeleteHTTPIntegrationRequest, opts ...grpc.CallOption) (*emptypb.Empty, error) {
out := new(emptypb.Empty)
err := c.cc.Invoke(ctx, "/api.ApplicationService/DeleteHTTPIntegration", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *applicationServiceClient) CreateInfluxDBIntegration(ctx context.Context, in *CreateInfluxDBIntegrationRequest, opts ...grpc.CallOption) (*emptypb.Empty, error) {
out := new(emptypb.Empty)
err := c.cc.Invoke(ctx, "/api.ApplicationService/CreateInfluxDBIntegration", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *applicationServiceClient) GetInfluxDBIntegration(ctx context.Context, in *GetInfluxDBIntegrationRequest, opts ...grpc.CallOption) (*GetInfluxDBIntegrationResponse, error) {
out := new(GetInfluxDBIntegrationResponse)
err := c.cc.Invoke(ctx, "/api.ApplicationService/GetInfluxDBIntegration", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *applicationServiceClient) UpdateInfluxDBIntegration(ctx context.Context, in *UpdateInfluxDBIntegrationRequest, opts ...grpc.CallOption) (*emptypb.Empty, error) {
out := new(emptypb.Empty)
err := c.cc.Invoke(ctx, "/api.ApplicationService/UpdateInfluxDBIntegration", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *applicationServiceClient) DeleteInfluxDBIntegration(ctx context.Context, in *DeleteInfluxDBIntegrationRequest, opts ...grpc.CallOption) (*emptypb.Empty, error) {
out := new(emptypb.Empty)
err := c.cc.Invoke(ctx, "/api.ApplicationService/DeleteInfluxDBIntegration", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *applicationServiceClient) CreateThingsBoardIntegration(ctx context.Context, in *CreateThingsBoardIntegrationRequest, opts ...grpc.CallOption) (*emptypb.Empty, error) {
out := new(emptypb.Empty)
err := c.cc.Invoke(ctx, "/api.ApplicationService/CreateThingsBoardIntegration", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *applicationServiceClient) GetThingsBoardIntegration(ctx context.Context, in *GetThingsBoardIntegrationRequest, opts ...grpc.CallOption) (*GetThingsBoardIntegrationResponse, error) {
out := new(GetThingsBoardIntegrationResponse)
err := c.cc.Invoke(ctx, "/api.ApplicationService/GetThingsBoardIntegration", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *applicationServiceClient) UpdateThingsBoardIntegration(ctx context.Context, in *UpdateThingsBoardIntegrationRequest, opts ...grpc.CallOption) (*emptypb.Empty, error) {
out := new(emptypb.Empty)
err := c.cc.Invoke(ctx, "/api.ApplicationService/UpdateThingsBoardIntegration", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *applicationServiceClient) DeleteThingsBoardIntegration(ctx context.Context, in *DeleteThingsBoardIntegrationRequest, opts ...grpc.CallOption) (*emptypb.Empty, error) {
out := new(emptypb.Empty)
err := c.cc.Invoke(ctx, "/api.ApplicationService/DeleteThingsBoardIntegration", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *applicationServiceClient) CreateMyDevicesIntegration(ctx context.Context, in *CreateMyDevicesIntegrationRequest, opts ...grpc.CallOption) (*emptypb.Empty, error) {
out := new(emptypb.Empty)
err := c.cc.Invoke(ctx, "/api.ApplicationService/CreateMyDevicesIntegration", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *applicationServiceClient) GetMyDevicesIntegration(ctx context.Context, in *GetMyDevicesIntegrationRequest, opts ...grpc.CallOption) (*GetMyDevicesIntegrationResponse, error) {
out := new(GetMyDevicesIntegrationResponse)
err := c.cc.Invoke(ctx, "/api.ApplicationService/GetMyDevicesIntegration", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *applicationServiceClient) UpdateMyDevicesIntegration(ctx context.Context, in *UpdateMyDevicesIntegrationRequest, opts ...grpc.CallOption) (*emptypb.Empty, error) {
out := new(emptypb.Empty)
err := c.cc.Invoke(ctx, "/api.ApplicationService/UpdateMyDevicesIntegration", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *applicationServiceClient) DeleteMyDevicesIntegration(ctx context.Context, in *DeleteMyDevicesIntegrationRequest, opts ...grpc.CallOption) (*emptypb.Empty, error) {
out := new(emptypb.Empty)
err := c.cc.Invoke(ctx, "/api.ApplicationService/DeleteMyDevicesIntegration", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *applicationServiceClient) CreateLoRaCloudIntegration(ctx context.Context, in *CreateLoRaCloudIntegrationRequest, opts ...grpc.CallOption) (*emptypb.Empty, error) {
out := new(emptypb.Empty)
err := c.cc.Invoke(ctx, "/api.ApplicationService/CreateLoRaCloudIntegration", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *applicationServiceClient) GetLoRaCloudIntegration(ctx context.Context, in *GetLoRaCloudIntegrationRequest, opts ...grpc.CallOption) (*GetLoRaCloudIntegrationResponse, error) {
out := new(GetLoRaCloudIntegrationResponse)
err := c.cc.Invoke(ctx, "/api.ApplicationService/GetLoRaCloudIntegration", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *applicationServiceClient) UpdateLoRaCloudIntegration(ctx context.Context, in *UpdateLoRaCloudIntegrationRequest, opts ...grpc.CallOption) (*emptypb.Empty, error) {
out := new(emptypb.Empty)
err := c.cc.Invoke(ctx, "/api.ApplicationService/UpdateLoRaCloudIntegration", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *applicationServiceClient) DeleteLoRaCloudIntegration(ctx context.Context, in *DeleteLoRaCloudIntegrationRequest, opts ...grpc.CallOption) (*emptypb.Empty, error) {
out := new(emptypb.Empty)
err := c.cc.Invoke(ctx, "/api.ApplicationService/DeleteLoRaCloudIntegration", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *applicationServiceClient) CreateGCPPubSubIntegration(ctx context.Context, in *CreateGCPPubSubIntegrationRequest, opts ...grpc.CallOption) (*emptypb.Empty, error) {
out := new(emptypb.Empty)
err := c.cc.Invoke(ctx, "/api.ApplicationService/CreateGCPPubSubIntegration", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *applicationServiceClient) GetGCPPubSubIntegration(ctx context.Context, in *GetGCPPubSubIntegrationRequest, opts ...grpc.CallOption) (*GetGCPPubSubIntegrationResponse, error) {
out := new(GetGCPPubSubIntegrationResponse)
err := c.cc.Invoke(ctx, "/api.ApplicationService/GetGCPPubSubIntegration", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *applicationServiceClient) UpdateGCPPubSubIntegration(ctx context.Context, in *UpdateGCPPubSubIntegrationRequest, opts ...grpc.CallOption) (*emptypb.Empty, error) {
out := new(emptypb.Empty)
err := c.cc.Invoke(ctx, "/api.ApplicationService/UpdateGCPPubSubIntegration", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *applicationServiceClient) DeleteGCPPubSubIntegration(ctx context.Context, in *DeleteGCPPubSubIntegrationRequest, opts ...grpc.CallOption) (*emptypb.Empty, error) {
out := new(emptypb.Empty)
err := c.cc.Invoke(ctx, "/api.ApplicationService/DeleteGCPPubSubIntegration", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *applicationServiceClient) CreateAWSSNSIntegration(ctx context.Context, in *CreateAWSSNSIntegrationRequest, opts ...grpc.CallOption) (*emptypb.Empty, error) {
out := new(emptypb.Empty)
err := c.cc.Invoke(ctx, "/api.ApplicationService/CreateAWSSNSIntegration", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *applicationServiceClient) GetAWSSNSIntegration(ctx context.Context, in *GetAWSSNSIntegrationRequest, opts ...grpc.CallOption) (*GetAWSSNSIntegrationResponse, error) {
out := new(GetAWSSNSIntegrationResponse)
err := c.cc.Invoke(ctx, "/api.ApplicationService/GetAWSSNSIntegration", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *applicationServiceClient) UpdateAWSSNSIntegration(ctx context.Context, in *UpdateAWSSNSIntegrationRequest, opts ...grpc.CallOption) (*emptypb.Empty, error) {
out := new(emptypb.Empty)
err := c.cc.Invoke(ctx, "/api.ApplicationService/UpdateAWSSNSIntegration", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *applicationServiceClient) DeleteAWSSNSIntegration(ctx context.Context, in *DeleteAWSSNSIntegrationRequest, opts ...grpc.CallOption) (*emptypb.Empty, error) {
out := new(emptypb.Empty)
err := c.cc.Invoke(ctx, "/api.ApplicationService/DeleteAWSSNSIntegration", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *applicationServiceClient) CreateAzureServiceBusIntegration(ctx context.Context, in *CreateAzureServiceBusIntegrationRequest, opts ...grpc.CallOption) (*emptypb.Empty, error) {
out := new(emptypb.Empty)
err := c.cc.Invoke(ctx, "/api.ApplicationService/CreateAzureServiceBusIntegration", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *applicationServiceClient) GetAzureServiceBusIntegration(ctx context.Context, in *GetAzureServiceBusIntegrationRequest, opts ...grpc.CallOption) (*GetAzureServiceBusIntegrationResponse, error) {
out := new(GetAzureServiceBusIntegrationResponse)
err := c.cc.Invoke(ctx, "/api.ApplicationService/GetAzureServiceBusIntegration", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *applicationServiceClient) UpdateAzureServiceBusIntegration(ctx context.Context, in *UpdateAzureServiceBusIntegrationRequest, opts ...grpc.CallOption) (*emptypb.Empty, error) {
out := new(emptypb.Empty)
err := c.cc.Invoke(ctx, "/api.ApplicationService/UpdateAzureServiceBusIntegration", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *applicationServiceClient) DeleteAzureServiceBusIntegration(ctx context.Context, in *DeleteAzureServiceBusIntegrationRequest, opts ...grpc.CallOption) (*emptypb.Empty, error) {
out := new(emptypb.Empty)
err := c.cc.Invoke(ctx, "/api.ApplicationService/DeleteAzureServiceBusIntegration", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *applicationServiceClient) CreatePilotThingsIntegration(ctx context.Context, in *CreatePilotThingsIntegrationRequest, opts ...grpc.CallOption) (*emptypb.Empty, error) {
out := new(emptypb.Empty)
err := c.cc.Invoke(ctx, "/api.ApplicationService/CreatePilotThingsIntegration", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *applicationServiceClient) GetPilotThingsIntegration(ctx context.Context, in *GetPilotThingsIntegrationRequest, opts ...grpc.CallOption) (*GetPilotThingsIntegrationResponse, error) {
out := new(GetPilotThingsIntegrationResponse)
err := c.cc.Invoke(ctx, "/api.ApplicationService/GetPilotThingsIntegration", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *applicationServiceClient) UpdatePilotThingsIntegration(ctx context.Context, in *UpdatePilotThingsIntegrationRequest, opts ...grpc.CallOption) (*emptypb.Empty, error) {
out := new(emptypb.Empty)
err := c.cc.Invoke(ctx, "/api.ApplicationService/UpdatePilotThingsIntegration", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *applicationServiceClient) DeletePilotThingsIntegration(ctx context.Context, in *DeletePilotThingsIntegrationRequest, opts ...grpc.CallOption) (*emptypb.Empty, error) {
out := new(emptypb.Empty)
err := c.cc.Invoke(ctx, "/api.ApplicationService/DeletePilotThingsIntegration", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *applicationServiceClient) ListIntegrations(ctx context.Context, in *ListIntegrationRequest, opts ...grpc.CallOption) (*ListIntegrationResponse, error) {
out := new(ListIntegrationResponse)
err := c.cc.Invoke(ctx, "/api.ApplicationService/ListIntegrations", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
// ApplicationServiceServer is the server API for ApplicationService service.
type ApplicationServiceServer interface {
// Create creates the given application.
Create(context.Context, *CreateApplicationRequest) (*CreateApplicationResponse, error)
// Get returns the requested application.
Get(context.Context, *GetApplicationRequest) (*GetApplicationResponse, error)
// Update updates the given application.
Update(context.Context, *UpdateApplicationRequest) (*emptypb.Empty, error)
// Delete deletes the given application.
Delete(context.Context, *DeleteApplicationRequest) (*emptypb.Empty, error)
// List lists the available applications.
List(context.Context, *ListApplicationRequest) (*ListApplicationResponse, error)
// CreateHTTPIntegration creates a HTTP application-integration.
CreateHTTPIntegration(context.Context, *CreateHTTPIntegrationRequest) (*emptypb.Empty, error)
// GetHTTPIntegration returns the HTTP application-integration.
GetHTTPIntegration(context.Context, *GetHTTPIntegrationRequest) (*GetHTTPIntegrationResponse, error)
// UpdateHTTPIntegration updates the HTTP application-integration.
UpdateHTTPIntegration(context.Context, *UpdateHTTPIntegrationRequest) (*emptypb.Empty, error)
// DeleteIntegration deletes the HTTP application-integration.
DeleteHTTPIntegration(context.Context, *DeleteHTTPIntegrationRequest) (*emptypb.Empty, error)
// CreateInfluxDBIntegration create an InfluxDB application-integration.
CreateInfluxDBIntegration(context.Context, *CreateInfluxDBIntegrationRequest) (*emptypb.Empty, error)
// GetInfluxDBIntegration returns the InfluxDB application-integration.
GetInfluxDBIntegration(context.Context, *GetInfluxDBIntegrationRequest) (*GetInfluxDBIntegrationResponse, error)
// UpdateInfluxDBIntegration updates the InfluxDB application-integration.
UpdateInfluxDBIntegration(context.Context, *UpdateInfluxDBIntegrationRequest) (*emptypb.Empty, error)
// DeleteInfluxDBIntegration deletes the InfluxDB application-integration.
DeleteInfluxDBIntegration(context.Context, *DeleteInfluxDBIntegrationRequest) (*emptypb.Empty, error)
// CreateThingsBoardIntegration creates a ThingsBoard application-integration.
CreateThingsBoardIntegration(context.Context, *CreateThingsBoardIntegrationRequest) (*emptypb.Empty, error)
// GetThingsBoardIntegration returns the ThingsBoard application-integration.
GetThingsBoardIntegration(context.Context, *GetThingsBoardIntegrationRequest) (*GetThingsBoardIntegrationResponse, error)
// UpdateThingsBoardIntegration updates the ThingsBoard application-integration.
UpdateThingsBoardIntegration(context.Context, *UpdateThingsBoardIntegrationRequest) (*emptypb.Empty, error)
// DeleteThingsBoardIntegration deletes the ThingsBoard application-integration.
DeleteThingsBoardIntegration(context.Context, *DeleteThingsBoardIntegrationRequest) (*emptypb.Empty, error)
// CreateMyDevicesIntegration creates a MyDevices application-integration.
CreateMyDevicesIntegration(context.Context, *CreateMyDevicesIntegrationRequest) (*emptypb.Empty, error)
// GetMyDevicesIntegration returns the MyDevices application-integration.
GetMyDevicesIntegration(context.Context, *GetMyDevicesIntegrationRequest) (*GetMyDevicesIntegrationResponse, error)
// UpdateMyDevicesIntegration updates the MyDevices application-integration.
UpdateMyDevicesIntegration(context.Context, *UpdateMyDevicesIntegrationRequest) (*emptypb.Empty, error)
// DeleteMyDevicesIntegration deletes the MyDevices application-integration.
DeleteMyDevicesIntegration(context.Context, *DeleteMyDevicesIntegrationRequest) (*emptypb.Empty, error)
// CreateLoRaCloudIntegration creates A LoRaCloud application-integration.
CreateLoRaCloudIntegration(context.Context, *CreateLoRaCloudIntegrationRequest) (*emptypb.Empty, error)
// GetLoRaCloudIntegration returns the LoRaCloud application-integration.
GetLoRaCloudIntegration(context.Context, *GetLoRaCloudIntegrationRequest) (*GetLoRaCloudIntegrationResponse, error)
// UpdateLoRaCloudIntegration updates the LoRaCloud application-integration.
UpdateLoRaCloudIntegration(context.Context, *UpdateLoRaCloudIntegrationRequest) (*emptypb.Empty, error)
// DeleteLoRaCloudIntegration deletes the LoRaCloud application-integration.
DeleteLoRaCloudIntegration(context.Context, *DeleteLoRaCloudIntegrationRequest) (*emptypb.Empty, error)
// CreateGCPPubSubIntegration creates a GCP PubSub application-integration.
CreateGCPPubSubIntegration(context.Context, *CreateGCPPubSubIntegrationRequest) (*emptypb.Empty, error)
// GetGCPPubSubIntegration returns the GCP PubSub application-integration.
GetGCPPubSubIntegration(context.Context, *GetGCPPubSubIntegrationRequest) (*GetGCPPubSubIntegrationResponse, error)
// UpdateGCPPubSubIntegration updates the GCP PubSub application-integration.
UpdateGCPPubSubIntegration(context.Context, *UpdateGCPPubSubIntegrationRequest) (*emptypb.Empty, error)
// DeleteGCPPubSubIntegration deletes the GCP PubSub application-integration.
DeleteGCPPubSubIntegration(context.Context, *DeleteGCPPubSubIntegrationRequest) (*emptypb.Empty, error)
// CreateAWSSNSIntegration creates a AWS SNS application-integration.
CreateAWSSNSIntegration(context.Context, *CreateAWSSNSIntegrationRequest) (*emptypb.Empty, error)
// GetAWSSNSIntegration returns the AWS SNS application-integration.
GetAWSSNSIntegration(context.Context, *GetAWSSNSIntegrationRequest) (*GetAWSSNSIntegrationResponse, error)
// UpdateAWSSNSIntegration updates the AWS SNS application-integration.
UpdateAWSSNSIntegration(context.Context, *UpdateAWSSNSIntegrationRequest) (*emptypb.Empty, error)
// DeleteAWSSNSIntegration deletes the AWS SNS application-integration.
DeleteAWSSNSIntegration(context.Context, *DeleteAWSSNSIntegrationRequest) (*emptypb.Empty, error)
// CreateAzureServiceBusIntegration creates an Azure Service-Bus application-integration.
CreateAzureServiceBusIntegration(context.Context, *CreateAzureServiceBusIntegrationRequest) (*emptypb.Empty, error)
// GetAzureServiceBusIntegration returns the Azure Service-Bus application-integration.
GetAzureServiceBusIntegration(context.Context, *GetAzureServiceBusIntegrationRequest) (*GetAzureServiceBusIntegrationResponse, error)
// UpdateAzureServiceBusIntegration updates the Azure Service-Bus application-integration.
UpdateAzureServiceBusIntegration(context.Context, *UpdateAzureServiceBusIntegrationRequest) (*emptypb.Empty, error)
// DeleteAzureServiceBusIntegration deletes the Azure Service-Bus application-integration.
DeleteAzureServiceBusIntegration(context.Context, *DeleteAzureServiceBusIntegrationRequest) (*emptypb.Empty, error)
// CreatePilotThingsIntegration creates an Pilot Things application-integration.
CreatePilotThingsIntegration(context.Context, *CreatePilotThingsIntegrationRequest) (*emptypb.Empty, error)
// GetPilotThingsIntegration returns the Pilot Things application-integration.
GetPilotThingsIntegration(context.Context, *GetPilotThingsIntegrationRequest) (*GetPilotThingsIntegrationResponse, error)
// UpdatePilotThingsIntegration updates the Pilot Things application-integration.
UpdatePilotThingsIntegration(context.Context, *UpdatePilotThingsIntegrationRequest) (*emptypb.Empty, error)
// DeletePilotThingsIntegration deletes the Pilot Things application-integration.
DeletePilotThingsIntegration(context.Context, *DeletePilotThingsIntegrationRequest) (*emptypb.Empty, error)
// ListIntegrations lists all configured integrations.
ListIntegrations(context.Context, *ListIntegrationRequest) (*ListIntegrationResponse, error)
}
// UnimplementedApplicationServiceServer can be embedded to have forward compatible implementations.
type UnimplementedApplicationServiceServer struct {
}
func (*UnimplementedApplicationServiceServer) Create(ctx context.Context, req *CreateApplicationRequest) (*CreateApplicationResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method Create not implemented")
}
func (*UnimplementedApplicationServiceServer) Get(ctx context.Context, req *GetApplicationRequest) (*GetApplicationResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method Get not implemented")
}
func (*UnimplementedApplicationServiceServer) Update(ctx context.Context, req *UpdateApplicationRequest) (*emptypb.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method Update not implemented")
}
func (*UnimplementedApplicationServiceServer) Delete(ctx context.Context, req *DeleteApplicationRequest) (*emptypb.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method Delete not implemented")
}
func (*UnimplementedApplicationServiceServer) List(ctx context.Context, req *ListApplicationRequest) (*ListApplicationResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method List not implemented")
}
func (*UnimplementedApplicationServiceServer) CreateHTTPIntegration(ctx context.Context, req *CreateHTTPIntegrationRequest) (*emptypb.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method CreateHTTPIntegration not implemented")
}
func (*UnimplementedApplicationServiceServer) GetHTTPIntegration(ctx context.Context, req *GetHTTPIntegrationRequest) (*GetHTTPIntegrationResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetHTTPIntegration not implemented")
}
func (*UnimplementedApplicationServiceServer) UpdateHTTPIntegration(ctx context.Context, req *UpdateHTTPIntegrationRequest) (*emptypb.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method UpdateHTTPIntegration not implemented")
}
func (*UnimplementedApplicationServiceServer) DeleteHTTPIntegration(ctx context.Context, req *DeleteHTTPIntegrationRequest) (*emptypb.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method DeleteHTTPIntegration not implemented")
}
func (*UnimplementedApplicationServiceServer) CreateInfluxDBIntegration(ctx context.Context, req *CreateInfluxDBIntegrationRequest) (*emptypb.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method CreateInfluxDBIntegration not implemented")
}
func (*UnimplementedApplicationServiceServer) GetInfluxDBIntegration(ctx context.Context, req *GetInfluxDBIntegrationRequest) (*GetInfluxDBIntegrationResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetInfluxDBIntegration not implemented")
}
func (*UnimplementedApplicationServiceServer) UpdateInfluxDBIntegration(ctx context.Context, req *UpdateInfluxDBIntegrationRequest) (*emptypb.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method UpdateInfluxDBIntegration not implemented")
}
func (*UnimplementedApplicationServiceServer) DeleteInfluxDBIntegration(ctx context.Context, req *DeleteInfluxDBIntegrationRequest) (*emptypb.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method DeleteInfluxDBIntegration not implemented")
}
func (*UnimplementedApplicationServiceServer) CreateThingsBoardIntegration(ctx context.Context, req *CreateThingsBoardIntegrationRequest) (*emptypb.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method CreateThingsBoardIntegration not implemented")
}
func (*UnimplementedApplicationServiceServer) GetThingsBoardIntegration(ctx context.Context, req *GetThingsBoardIntegrationRequest) (*GetThingsBoardIntegrationResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetThingsBoardIntegration not implemented")
}
func (*UnimplementedApplicationServiceServer) UpdateThingsBoardIntegration(ctx context.Context, req *UpdateThingsBoardIntegrationRequest) (*emptypb.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method UpdateThingsBoardIntegration not implemented")
}
func (*UnimplementedApplicationServiceServer) DeleteThingsBoardIntegration(ctx context.Context, req *DeleteThingsBoardIntegrationRequest) (*emptypb.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method DeleteThingsBoardIntegration not implemented")
}
func (*UnimplementedApplicationServiceServer) CreateMyDevicesIntegration(ctx context.Context, req *CreateMyDevicesIntegrationRequest) (*emptypb.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method CreateMyDevicesIntegration not implemented")
}
func (*UnimplementedApplicationServiceServer) GetMyDevicesIntegration(ctx context.Context, req *GetMyDevicesIntegrationRequest) (*GetMyDevicesIntegrationResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetMyDevicesIntegration not implemented")
}
func (*UnimplementedApplicationServiceServer) UpdateMyDevicesIntegration(ctx context.Context, req *UpdateMyDevicesIntegrationRequest) (*emptypb.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method UpdateMyDevicesIntegration not implemented")
}
func (*UnimplementedApplicationServiceServer) DeleteMyDevicesIntegration(ctx context.Context, req *DeleteMyDevicesIntegrationRequest) (*emptypb.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method DeleteMyDevicesIntegration not implemented")
}
func (*UnimplementedApplicationServiceServer) CreateLoRaCloudIntegration(ctx context.Context, req *CreateLoRaCloudIntegrationRequest) (*emptypb.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method CreateLoRaCloudIntegration not implemented")
}
func (*UnimplementedApplicationServiceServer) GetLoRaCloudIntegration(ctx context.Context, req *GetLoRaCloudIntegrationRequest) (*GetLoRaCloudIntegrationResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetLoRaCloudIntegration not implemented")
}
func (*UnimplementedApplicationServiceServer) UpdateLoRaCloudIntegration(ctx context.Context, req *UpdateLoRaCloudIntegrationRequest) (*emptypb.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method UpdateLoRaCloudIntegration not implemented")
}
func (*UnimplementedApplicationServiceServer) DeleteLoRaCloudIntegration(ctx context.Context, req *DeleteLoRaCloudIntegrationRequest) (*emptypb.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method DeleteLoRaCloudIntegration not implemented")
}
func (*UnimplementedApplicationServiceServer) CreateGCPPubSubIntegration(ctx context.Context, req *CreateGCPPubSubIntegrationRequest) (*emptypb.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method CreateGCPPubSubIntegration not implemented")
}
func (*UnimplementedApplicationServiceServer) GetGCPPubSubIntegration(ctx context.Context, req *GetGCPPubSubIntegrationRequest) (*GetGCPPubSubIntegrationResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetGCPPubSubIntegration not implemented")
}
func (*UnimplementedApplicationServiceServer) UpdateGCPPubSubIntegration(ctx context.Context, req *UpdateGCPPubSubIntegrationRequest) (*emptypb.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method UpdateGCPPubSubIntegration not implemented")
}
func (*UnimplementedApplicationServiceServer) DeleteGCPPubSubIntegration(ctx context.Context, req *DeleteGCPPubSubIntegrationRequest) (*emptypb.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method DeleteGCPPubSubIntegration not implemented")
}
func (*UnimplementedApplicationServiceServer) CreateAWSSNSIntegration(ctx context.Context, req *CreateAWSSNSIntegrationRequest) (*emptypb.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method CreateAWSSNSIntegration not implemented")
}
func (*UnimplementedApplicationServiceServer) GetAWSSNSIntegration(ctx context.Context, req *GetAWSSNSIntegrationRequest) (*GetAWSSNSIntegrationResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetAWSSNSIntegration not implemented")
}
func (*UnimplementedApplicationServiceServer) UpdateAWSSNSIntegration(ctx context.Context, req *UpdateAWSSNSIntegrationRequest) (*emptypb.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method UpdateAWSSNSIntegration not implemented")
}
func (*UnimplementedApplicationServiceServer) DeleteAWSSNSIntegration(ctx context.Context, req *DeleteAWSSNSIntegrationRequest) (*emptypb.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method DeleteAWSSNSIntegration not implemented")
}
func (*UnimplementedApplicationServiceServer) CreateAzureServiceBusIntegration(ctx context.Context, req *CreateAzureServiceBusIntegrationRequest) (*emptypb.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method CreateAzureServiceBusIntegration not implemented")
}
func (*UnimplementedApplicationServiceServer) GetAzureServiceBusIntegration(ctx context.Context, req *GetAzureServiceBusIntegrationRequest) (*GetAzureServiceBusIntegrationResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetAzureServiceBusIntegration not implemented")
}
func (*UnimplementedApplicationServiceServer) UpdateAzureServiceBusIntegration(ctx context.Context, req *UpdateAzureServiceBusIntegrationRequest) (*emptypb.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method UpdateAzureServiceBusIntegration not implemented")
}
func (*UnimplementedApplicationServiceServer) DeleteAzureServiceBusIntegration(ctx context.Context, req *DeleteAzureServiceBusIntegrationRequest) (*emptypb.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method DeleteAzureServiceBusIntegration not implemented")
}
func (*UnimplementedApplicationServiceServer) CreatePilotThingsIntegration(ctx context.Context, req *CreatePilotThingsIntegrationRequest) (*emptypb.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method CreatePilotThingsIntegration not implemented")
}
func (*UnimplementedApplicationServiceServer) GetPilotThingsIntegration(ctx context.Context, req *GetPilotThingsIntegrationRequest) (*GetPilotThingsIntegrationResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetPilotThingsIntegration not implemented")
}
func (*UnimplementedApplicationServiceServer) UpdatePilotThingsIntegration(ctx context.Context, req *UpdatePilotThingsIntegrationRequest) (*emptypb.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method UpdatePilotThingsIntegration not implemented")
}
func (*UnimplementedApplicationServiceServer) DeletePilotThingsIntegration(ctx context.Context, req *DeletePilotThingsIntegrationRequest) (*emptypb.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method DeletePilotThingsIntegration not implemented")
}
func (*UnimplementedApplicationServiceServer) ListIntegrations(ctx context.Context, req *ListIntegrationRequest) (*ListIntegrationResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method ListIntegrations not implemented")
}
func RegisterApplicationServiceServer(s *grpc.Server, srv ApplicationServiceServer) {
s.RegisterService(&_ApplicationService_serviceDesc, srv)
}
func _ApplicationService_Create_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(CreateApplicationRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ApplicationServiceServer).Create(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/api.ApplicationService/Create",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ApplicationServiceServer).Create(ctx, req.(*CreateApplicationRequest))
}
return interceptor(ctx, in, info, handler)
}
func _ApplicationService_Get_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(GetApplicationRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ApplicationServiceServer).Get(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/api.ApplicationService/Get",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ApplicationServiceServer).Get(ctx, req.(*GetApplicationRequest))
}
return interceptor(ctx, in, info, handler)
}
func _ApplicationService_Update_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(UpdateApplicationRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ApplicationServiceServer).Update(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/api.ApplicationService/Update",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ApplicationServiceServer).Update(ctx, req.(*UpdateApplicationRequest))
}
return interceptor(ctx, in, info, handler)
}
func _ApplicationService_Delete_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(DeleteApplicationRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ApplicationServiceServer).Delete(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/api.ApplicationService/Delete",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ApplicationServiceServer).Delete(ctx, req.(*DeleteApplicationRequest))
}
return interceptor(ctx, in, info, handler)
}
func _ApplicationService_List_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(ListApplicationRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ApplicationServiceServer).List(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/api.ApplicationService/List",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ApplicationServiceServer).List(ctx, req.(*ListApplicationRequest))
}
return interceptor(ctx, in, info, handler)
}
func _ApplicationService_CreateHTTPIntegration_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(CreateHTTPIntegrationRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ApplicationServiceServer).CreateHTTPIntegration(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/api.ApplicationService/CreateHTTPIntegration",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ApplicationServiceServer).CreateHTTPIntegration(ctx, req.(*CreateHTTPIntegrationRequest))
}
return interceptor(ctx, in, info, handler)
}
func _ApplicationService_GetHTTPIntegration_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(GetHTTPIntegrationRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ApplicationServiceServer).GetHTTPIntegration(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/api.ApplicationService/GetHTTPIntegration",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ApplicationServiceServer).GetHTTPIntegration(ctx, req.(*GetHTTPIntegrationRequest))
}
return interceptor(ctx, in, info, handler)
}
func _ApplicationService_UpdateHTTPIntegration_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(UpdateHTTPIntegrationRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ApplicationServiceServer).UpdateHTTPIntegration(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/api.ApplicationService/UpdateHTTPIntegration",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ApplicationServiceServer).UpdateHTTPIntegration(ctx, req.(*UpdateHTTPIntegrationRequest))
}
return interceptor(ctx, in, info, handler)
}
func _ApplicationService_DeleteHTTPIntegration_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(DeleteHTTPIntegrationRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ApplicationServiceServer).DeleteHTTPIntegration(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/api.ApplicationService/DeleteHTTPIntegration",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ApplicationServiceServer).DeleteHTTPIntegration(ctx, req.(*DeleteHTTPIntegrationRequest))
}
return interceptor(ctx, in, info, handler)
}
func _ApplicationService_CreateInfluxDBIntegration_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(CreateInfluxDBIntegrationRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ApplicationServiceServer).CreateInfluxDBIntegration(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/api.ApplicationService/CreateInfluxDBIntegration",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ApplicationServiceServer).CreateInfluxDBIntegration(ctx, req.(*CreateInfluxDBIntegrationRequest))
}
return interceptor(ctx, in, info, handler)
}
func _ApplicationService_GetInfluxDBIntegration_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(GetInfluxDBIntegrationRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ApplicationServiceServer).GetInfluxDBIntegration(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/api.ApplicationService/GetInfluxDBIntegration",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ApplicationServiceServer).GetInfluxDBIntegration(ctx, req.(*GetInfluxDBIntegrationRequest))
}
return interceptor(ctx, in, info, handler)
}
func _ApplicationService_UpdateInfluxDBIntegration_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(UpdateInfluxDBIntegrationRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ApplicationServiceServer).UpdateInfluxDBIntegration(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/api.ApplicationService/UpdateInfluxDBIntegration",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ApplicationServiceServer).UpdateInfluxDBIntegration(ctx, req.(*UpdateInfluxDBIntegrationRequest))
}
return interceptor(ctx, in, info, handler)
}
func _ApplicationService_DeleteInfluxDBIntegration_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(DeleteInfluxDBIntegrationRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ApplicationServiceServer).DeleteInfluxDBIntegration(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/api.ApplicationService/DeleteInfluxDBIntegration",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ApplicationServiceServer).DeleteInfluxDBIntegration(ctx, req.(*DeleteInfluxDBIntegrationRequest))
}
return interceptor(ctx, in, info, handler)
}
func _ApplicationService_CreateThingsBoardIntegration_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(CreateThingsBoardIntegrationRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ApplicationServiceServer).CreateThingsBoardIntegration(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/api.ApplicationService/CreateThingsBoardIntegration",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ApplicationServiceServer).CreateThingsBoardIntegration(ctx, req.(*CreateThingsBoardIntegrationRequest))
}
return interceptor(ctx, in, info, handler)
}
func _ApplicationService_GetThingsBoardIntegration_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(GetThingsBoardIntegrationRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ApplicationServiceServer).GetThingsBoardIntegration(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/api.ApplicationService/GetThingsBoardIntegration",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ApplicationServiceServer).GetThingsBoardIntegration(ctx, req.(*GetThingsBoardIntegrationRequest))
}
return interceptor(ctx, in, info, handler)
}
func _ApplicationService_UpdateThingsBoardIntegration_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(UpdateThingsBoardIntegrationRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ApplicationServiceServer).UpdateThingsBoardIntegration(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/api.ApplicationService/UpdateThingsBoardIntegration",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ApplicationServiceServer).UpdateThingsBoardIntegration(ctx, req.(*UpdateThingsBoardIntegrationRequest))
}
return interceptor(ctx, in, info, handler)
}
func _ApplicationService_DeleteThingsBoardIntegration_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(DeleteThingsBoardIntegrationRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ApplicationServiceServer).DeleteThingsBoardIntegration(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/api.ApplicationService/DeleteThingsBoardIntegration",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ApplicationServiceServer).DeleteThingsBoardIntegration(ctx, req.(*DeleteThingsBoardIntegrationRequest))
}
return interceptor(ctx, in, info, handler)
}
func _ApplicationService_CreateMyDevicesIntegration_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(CreateMyDevicesIntegrationRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ApplicationServiceServer).CreateMyDevicesIntegration(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/api.ApplicationService/CreateMyDevicesIntegration",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ApplicationServiceServer).CreateMyDevicesIntegration(ctx, req.(*CreateMyDevicesIntegrationRequest))
}
return interceptor(ctx, in, info, handler)
}
func _ApplicationService_GetMyDevicesIntegration_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(GetMyDevicesIntegrationRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ApplicationServiceServer).GetMyDevicesIntegration(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/api.ApplicationService/GetMyDevicesIntegration",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ApplicationServiceServer).GetMyDevicesIntegration(ctx, req.(*GetMyDevicesIntegrationRequest))
}
return interceptor(ctx, in, info, handler)
}
func _ApplicationService_UpdateMyDevicesIntegration_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(UpdateMyDevicesIntegrationRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ApplicationServiceServer).UpdateMyDevicesIntegration(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/api.ApplicationService/UpdateMyDevicesIntegration",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ApplicationServiceServer).UpdateMyDevicesIntegration(ctx, req.(*UpdateMyDevicesIntegrationRequest))
}
return interceptor(ctx, in, info, handler)
}
func _ApplicationService_DeleteMyDevicesIntegration_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(DeleteMyDevicesIntegrationRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ApplicationServiceServer).DeleteMyDevicesIntegration(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/api.ApplicationService/DeleteMyDevicesIntegration",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ApplicationServiceServer).DeleteMyDevicesIntegration(ctx, req.(*DeleteMyDevicesIntegrationRequest))
}
return interceptor(ctx, in, info, handler)
}
func _ApplicationService_CreateLoRaCloudIntegration_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(CreateLoRaCloudIntegrationRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ApplicationServiceServer).CreateLoRaCloudIntegration(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/api.ApplicationService/CreateLoRaCloudIntegration",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ApplicationServiceServer).CreateLoRaCloudIntegration(ctx, req.(*CreateLoRaCloudIntegrationRequest))
}
return interceptor(ctx, in, info, handler)
}
func _ApplicationService_GetLoRaCloudIntegration_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(GetLoRaCloudIntegrationRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ApplicationServiceServer).GetLoRaCloudIntegration(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/api.ApplicationService/GetLoRaCloudIntegration",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ApplicationServiceServer).GetLoRaCloudIntegration(ctx, req.(*GetLoRaCloudIntegrationRequest))
}
return interceptor(ctx, in, info, handler)
}
func _ApplicationService_UpdateLoRaCloudIntegration_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(UpdateLoRaCloudIntegrationRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ApplicationServiceServer).UpdateLoRaCloudIntegration(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/api.ApplicationService/UpdateLoRaCloudIntegration",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ApplicationServiceServer).UpdateLoRaCloudIntegration(ctx, req.(*UpdateLoRaCloudIntegrationRequest))
}
return interceptor(ctx, in, info, handler)
}
func _ApplicationService_DeleteLoRaCloudIntegration_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(DeleteLoRaCloudIntegrationRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ApplicationServiceServer).DeleteLoRaCloudIntegration(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/api.ApplicationService/DeleteLoRaCloudIntegration",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ApplicationServiceServer).DeleteLoRaCloudIntegration(ctx, req.(*DeleteLoRaCloudIntegrationRequest))
}
return interceptor(ctx, in, info, handler)
}
func _ApplicationService_CreateGCPPubSubIntegration_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(CreateGCPPubSubIntegrationRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ApplicationServiceServer).CreateGCPPubSubIntegration(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/api.ApplicationService/CreateGCPPubSubIntegration",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ApplicationServiceServer).CreateGCPPubSubIntegration(ctx, req.(*CreateGCPPubSubIntegrationRequest))
}
return interceptor(ctx, in, info, handler)
}
func _ApplicationService_GetGCPPubSubIntegration_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(GetGCPPubSubIntegrationRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ApplicationServiceServer).GetGCPPubSubIntegration(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/api.ApplicationService/GetGCPPubSubIntegration",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ApplicationServiceServer).GetGCPPubSubIntegration(ctx, req.(*GetGCPPubSubIntegrationRequest))
}
return interceptor(ctx, in, info, handler)
}
func _ApplicationService_UpdateGCPPubSubIntegration_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(UpdateGCPPubSubIntegrationRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ApplicationServiceServer).UpdateGCPPubSubIntegration(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/api.ApplicationService/UpdateGCPPubSubIntegration",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ApplicationServiceServer).UpdateGCPPubSubIntegration(ctx, req.(*UpdateGCPPubSubIntegrationRequest))
}
return interceptor(ctx, in, info, handler)
}
func _ApplicationService_DeleteGCPPubSubIntegration_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(DeleteGCPPubSubIntegrationRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ApplicationServiceServer).DeleteGCPPubSubIntegration(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/api.ApplicationService/DeleteGCPPubSubIntegration",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ApplicationServiceServer).DeleteGCPPubSubIntegration(ctx, req.(*DeleteGCPPubSubIntegrationRequest))
}
return interceptor(ctx, in, info, handler)
}
func _ApplicationService_CreateAWSSNSIntegration_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(CreateAWSSNSIntegrationRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ApplicationServiceServer).CreateAWSSNSIntegration(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/api.ApplicationService/CreateAWSSNSIntegration",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ApplicationServiceServer).CreateAWSSNSIntegration(ctx, req.(*CreateAWSSNSIntegrationRequest))
}
return interceptor(ctx, in, info, handler)
}
func _ApplicationService_GetAWSSNSIntegration_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(GetAWSSNSIntegrationRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ApplicationServiceServer).GetAWSSNSIntegration(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/api.ApplicationService/GetAWSSNSIntegration",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ApplicationServiceServer).GetAWSSNSIntegration(ctx, req.(*GetAWSSNSIntegrationRequest))
}
return interceptor(ctx, in, info, handler)
}
func _ApplicationService_UpdateAWSSNSIntegration_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(UpdateAWSSNSIntegrationRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ApplicationServiceServer).UpdateAWSSNSIntegration(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/api.ApplicationService/UpdateAWSSNSIntegration",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ApplicationServiceServer).UpdateAWSSNSIntegration(ctx, req.(*UpdateAWSSNSIntegrationRequest))
}
return interceptor(ctx, in, info, handler)
}
func _ApplicationService_DeleteAWSSNSIntegration_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(DeleteAWSSNSIntegrationRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ApplicationServiceServer).DeleteAWSSNSIntegration(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/api.ApplicationService/DeleteAWSSNSIntegration",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ApplicationServiceServer).DeleteAWSSNSIntegration(ctx, req.(*DeleteAWSSNSIntegrationRequest))
}
return interceptor(ctx, in, info, handler)
}
func _ApplicationService_CreateAzureServiceBusIntegration_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(CreateAzureServiceBusIntegrationRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ApplicationServiceServer).CreateAzureServiceBusIntegration(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/api.ApplicationService/CreateAzureServiceBusIntegration",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ApplicationServiceServer).CreateAzureServiceBusIntegration(ctx, req.(*CreateAzureServiceBusIntegrationRequest))
}
return interceptor(ctx, in, info, handler)
}
func _ApplicationService_GetAzureServiceBusIntegration_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(GetAzureServiceBusIntegrationRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ApplicationServiceServer).GetAzureServiceBusIntegration(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/api.ApplicationService/GetAzureServiceBusIntegration",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ApplicationServiceServer).GetAzureServiceBusIntegration(ctx, req.(*GetAzureServiceBusIntegrationRequest))
}
return interceptor(ctx, in, info, handler)
}
func _ApplicationService_UpdateAzureServiceBusIntegration_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(UpdateAzureServiceBusIntegrationRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ApplicationServiceServer).UpdateAzureServiceBusIntegration(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/api.ApplicationService/UpdateAzureServiceBusIntegration",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ApplicationServiceServer).UpdateAzureServiceBusIntegration(ctx, req.(*UpdateAzureServiceBusIntegrationRequest))
}
return interceptor(ctx, in, info, handler)
}
func _ApplicationService_DeleteAzureServiceBusIntegration_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(DeleteAzureServiceBusIntegrationRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ApplicationServiceServer).DeleteAzureServiceBusIntegration(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/api.ApplicationService/DeleteAzureServiceBusIntegration",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ApplicationServiceServer).DeleteAzureServiceBusIntegration(ctx, req.(*DeleteAzureServiceBusIntegrationRequest))
}
return interceptor(ctx, in, info, handler)
}
func _ApplicationService_CreatePilotThingsIntegration_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(CreatePilotThingsIntegrationRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ApplicationServiceServer).CreatePilotThingsIntegration(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/api.ApplicationService/CreatePilotThingsIntegration",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ApplicationServiceServer).CreatePilotThingsIntegration(ctx, req.(*CreatePilotThingsIntegrationRequest))
}
return interceptor(ctx, in, info, handler)
}
func _ApplicationService_GetPilotThingsIntegration_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(GetPilotThingsIntegrationRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ApplicationServiceServer).GetPilotThingsIntegration(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/api.ApplicationService/GetPilotThingsIntegration",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ApplicationServiceServer).GetPilotThingsIntegration(ctx, req.(*GetPilotThingsIntegrationRequest))
}
return interceptor(ctx, in, info, handler)
}
func _ApplicationService_UpdatePilotThingsIntegration_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(UpdatePilotThingsIntegrationRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ApplicationServiceServer).UpdatePilotThingsIntegration(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/api.ApplicationService/UpdatePilotThingsIntegration",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ApplicationServiceServer).UpdatePilotThingsIntegration(ctx, req.(*UpdatePilotThingsIntegrationRequest))
}
return interceptor(ctx, in, info, handler)
}
func _ApplicationService_DeletePilotThingsIntegration_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(DeletePilotThingsIntegrationRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ApplicationServiceServer).DeletePilotThingsIntegration(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/api.ApplicationService/DeletePilotThingsIntegration",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ApplicationServiceServer).DeletePilotThingsIntegration(ctx, req.(*DeletePilotThingsIntegrationRequest))
}
return interceptor(ctx, in, info, handler)
}
func _ApplicationService_ListIntegrations_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(ListIntegrationRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ApplicationServiceServer).ListIntegrations(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/api.ApplicationService/ListIntegrations",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ApplicationServiceServer).ListIntegrations(ctx, req.(*ListIntegrationRequest))
}
return interceptor(ctx, in, info, handler)
}
var _ApplicationService_serviceDesc = grpc.ServiceDesc{
ServiceName: "api.ApplicationService",
HandlerType: (*ApplicationServiceServer)(nil),
Methods: []grpc.MethodDesc{
{
MethodName: "Create",
Handler: _ApplicationService_Create_Handler,
},
{
MethodName: "Get",
Handler: _ApplicationService_Get_Handler,
},
{
MethodName: "Update",
Handler: _ApplicationService_Update_Handler,
},
{
MethodName: "Delete",
Handler: _ApplicationService_Delete_Handler,
},
{
MethodName: "List",
Handler: _ApplicationService_List_Handler,
},
{
MethodName: "CreateHTTPIntegration",
Handler: _ApplicationService_CreateHTTPIntegration_Handler,
},
{
MethodName: "GetHTTPIntegration",
Handler: _ApplicationService_GetHTTPIntegration_Handler,
},
{
MethodName: "UpdateHTTPIntegration",
Handler: _ApplicationService_UpdateHTTPIntegration_Handler,
},
{
MethodName: "DeleteHTTPIntegration",
Handler: _ApplicationService_DeleteHTTPIntegration_Handler,
},
{
MethodName: "CreateInfluxDBIntegration",
Handler: _ApplicationService_CreateInfluxDBIntegration_Handler,
},
{
MethodName: "GetInfluxDBIntegration",
Handler: _ApplicationService_GetInfluxDBIntegration_Handler,
},
{
MethodName: "UpdateInfluxDBIntegration",
Handler: _ApplicationService_UpdateInfluxDBIntegration_Handler,
},
{
MethodName: "DeleteInfluxDBIntegration",
Handler: _ApplicationService_DeleteInfluxDBIntegration_Handler,
},
{
MethodName: "CreateThingsBoardIntegration",
Handler: _ApplicationService_CreateThingsBoardIntegration_Handler,
},
{
MethodName: "GetThingsBoardIntegration",
Handler: _ApplicationService_GetThingsBoardIntegration_Handler,
},
{
MethodName: "UpdateThingsBoardIntegration",
Handler: _ApplicationService_UpdateThingsBoardIntegration_Handler,
},
{
MethodName: "DeleteThingsBoardIntegration",
Handler: _ApplicationService_DeleteThingsBoardIntegration_Handler,
},
{
MethodName: "CreateMyDevicesIntegration",
Handler: _ApplicationService_CreateMyDevicesIntegration_Handler,
},
{
MethodName: "GetMyDevicesIntegration",
Handler: _ApplicationService_GetMyDevicesIntegration_Handler,
},
{
MethodName: "UpdateMyDevicesIntegration",
Handler: _ApplicationService_UpdateMyDevicesIntegration_Handler,
},
{
MethodName: "DeleteMyDevicesIntegration",
Handler: _ApplicationService_DeleteMyDevicesIntegration_Handler,
},
{
MethodName: "CreateLoRaCloudIntegration",
Handler: _ApplicationService_CreateLoRaCloudIntegration_Handler,
},
{
MethodName: "GetLoRaCloudIntegration",
Handler: _ApplicationService_GetLoRaCloudIntegration_Handler,
},
{
MethodName: "UpdateLoRaCloudIntegration",
Handler: _ApplicationService_UpdateLoRaCloudIntegration_Handler,
},
{
MethodName: "DeleteLoRaCloudIntegration",
Handler: _ApplicationService_DeleteLoRaCloudIntegration_Handler,
},
{
MethodName: "CreateGCPPubSubIntegration",
Handler: _ApplicationService_CreateGCPPubSubIntegration_Handler,
},
{
MethodName: "GetGCPPubSubIntegration",
Handler: _ApplicationService_GetGCPPubSubIntegration_Handler,
},
{
MethodName: "UpdateGCPPubSubIntegration",
Handler: _ApplicationService_UpdateGCPPubSubIntegration_Handler,
},
{
MethodName: "DeleteGCPPubSubIntegration",
Handler: _ApplicationService_DeleteGCPPubSubIntegration_Handler,
},
{
MethodName: "CreateAWSSNSIntegration",
Handler: _ApplicationService_CreateAWSSNSIntegration_Handler,
},
{
MethodName: "GetAWSSNSIntegration",
Handler: _ApplicationService_GetAWSSNSIntegration_Handler,
},
{
MethodName: "UpdateAWSSNSIntegration",
Handler: _ApplicationService_UpdateAWSSNSIntegration_Handler,
},
{
MethodName: "DeleteAWSSNSIntegration",
Handler: _ApplicationService_DeleteAWSSNSIntegration_Handler,
},
{
MethodName: "CreateAzureServiceBusIntegration",
Handler: _ApplicationService_CreateAzureServiceBusIntegration_Handler,
},
{
MethodName: "GetAzureServiceBusIntegration",
Handler: _ApplicationService_GetAzureServiceBusIntegration_Handler,
},
{
MethodName: "UpdateAzureServiceBusIntegration",
Handler: _ApplicationService_UpdateAzureServiceBusIntegration_Handler,
},
{
MethodName: "DeleteAzureServiceBusIntegration",
Handler: _ApplicationService_DeleteAzureServiceBusIntegration_Handler,
},
{
MethodName: "CreatePilotThingsIntegration",
Handler: _ApplicationService_CreatePilotThingsIntegration_Handler,
},
{
MethodName: "GetPilotThingsIntegration",
Handler: _ApplicationService_GetPilotThingsIntegration_Handler,
},
{
MethodName: "UpdatePilotThingsIntegration",
Handler: _ApplicationService_UpdatePilotThingsIntegration_Handler,
},
{
MethodName: "DeletePilotThingsIntegration",
Handler: _ApplicationService_DeletePilotThingsIntegration_Handler,
},
{
MethodName: "ListIntegrations",
Handler: _ApplicationService_ListIntegrations_Handler,
},
},
Streams: []grpc.StreamDesc{},
Metadata: "as/external/api/application.proto",
}
1
https://gitee.com/arya123/chirpstack-api.git
git@gitee.com:arya123/chirpstack-api.git
arya123
chirpstack-api
chirpstack-api
58627aede349

搜索帮助