mirror of
https://github.com/micromdm/micromdm/
synced 2026-08-12 21:35:40 +08:00
committed by
Victor Vrantchan
parent
495dd8bdf9
commit
c06bee78bf
8
Gopkg.lock
generated
8
Gopkg.lock
generated
@@ -50,10 +50,10 @@
|
||||
version = "v0.4"
|
||||
|
||||
[[projects]]
|
||||
branch = "master"
|
||||
branch = "revert-275-go-context-stdlib"
|
||||
name = "github.com/golang/protobuf"
|
||||
packages = ["proto"]
|
||||
revision = "9f174c986221c608fb5143bd623b6076a71feae3"
|
||||
revision = "154c03a3a9331d88d991096c1c3023aafafecf64"
|
||||
|
||||
[[projects]]
|
||||
name = "github.com/gorilla/context"
|
||||
@@ -95,7 +95,7 @@
|
||||
branch = "master"
|
||||
name = "github.com/micromdm/mdm"
|
||||
packages = ["."]
|
||||
revision = "255824c8b22417622b1fee883b5508dec9587b34"
|
||||
revision = "90769a42e9940a8cdc99c33840e6a4bbc192917d"
|
||||
|
||||
[[projects]]
|
||||
name = "github.com/micromdm/scep"
|
||||
@@ -142,6 +142,6 @@
|
||||
[solve-meta]
|
||||
analyzer-name = "dep"
|
||||
analyzer-version = 1
|
||||
inputs-digest = "9502148927d630aed51089b18e46395f56995ed144a986d44a960379d1bff4b8"
|
||||
inputs-digest = "5b77abba24cd41ee8041e87f39d656f92bbff87b25fc92f299a48400f6385d3f"
|
||||
solver-name = "gps-cdcl"
|
||||
solver-version = 1
|
||||
|
||||
@@ -77,6 +77,10 @@ func MarshalEvent(e *Event) ([]byte, error) {
|
||||
payload.Command.InstallProfile = &commandproto.InstallProfile{
|
||||
Payload: e.Payload.Command.InstallProfile.Payload,
|
||||
}
|
||||
case "RemoveProfile":
|
||||
payload.Command.RemoveProfile = &commandproto.RemoveProfile{
|
||||
Identifier: e.Payload.Command.RemoveProfile.Identifier,
|
||||
}
|
||||
case "InstallApplication":
|
||||
cmd := e.Payload.Command.InstallApplication
|
||||
payload.Command.InstallApplication = &commandproto.InstallApplication{
|
||||
@@ -159,6 +163,10 @@ func UnmarshalEvent(data []byte, e *Event) error {
|
||||
e.Payload.Command.InstallProfile = mdm.InstallProfile{
|
||||
Payload: pb.Payload.Command.InstallProfile.Payload,
|
||||
}
|
||||
case "RemoveProfile":
|
||||
e.Payload.Command.RemoveProfile = mdm.RemoveProfile{
|
||||
Identifier: pb.Payload.Command.RemoveProfile.Identifier,
|
||||
}
|
||||
case "InstallApplication":
|
||||
cmd := pb.Payload.Command.GetInstallApplication()
|
||||
e.Payload.Command.InstallApplication = mdm.InstallApplication{
|
||||
|
||||
@@ -1,12 +1,11 @@
|
||||
// Code generated by protoc-gen-go.
|
||||
// source: command.proto
|
||||
// DO NOT EDIT!
|
||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
||||
// source: command/internal/commandproto/command.proto
|
||||
|
||||
/*
|
||||
Package commandproto is a generated protocol buffer package.
|
||||
|
||||
It is generated from these files:
|
||||
command.proto
|
||||
command/internal/commandproto/command.proto
|
||||
|
||||
It has these top-level messages:
|
||||
Event
|
||||
@@ -19,6 +18,7 @@ It has these top-level messages:
|
||||
AutoSetupAdminAccounts
|
||||
DeviceInformation
|
||||
InstallProfile
|
||||
RemoveProfile
|
||||
InstallApplication
|
||||
*/
|
||||
package commandproto
|
||||
@@ -110,6 +110,7 @@ type Command struct {
|
||||
AccountConfiguration *AccountConfiguration `protobuf:"bytes,5,opt,name=account_configuration,json=accountConfiguration" json:"account_configuration,omitempty"`
|
||||
ScheduleOsUpdate *ScheduleOSUpdate `protobuf:"bytes,6,opt,name=schedule_os_update,json=scheduleOsUpdate" json:"schedule_os_update,omitempty"`
|
||||
ScheduleOsUpdateScan *ScheduleOSUpdateScan `protobuf:"bytes,7,opt,name=schedule_os_update_scan,json=scheduleOsUpdateScan" json:"schedule_os_update_scan,omitempty"`
|
||||
RemoveProfile *RemoveProfile `protobuf:"bytes,8,opt,name=remove_profile,json=removeProfile" json:"remove_profile,omitempty"`
|
||||
}
|
||||
|
||||
func (m *Command) Reset() { *m = Command{} }
|
||||
@@ -166,6 +167,13 @@ func (m *Command) GetScheduleOsUpdateScan() *ScheduleOSUpdateScan {
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *Command) GetRemoveProfile() *RemoveProfile {
|
||||
if m != nil {
|
||||
return m.RemoveProfile
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
type ScheduleOSUpdate struct {
|
||||
Updates []*OSUpdate `protobuf:"bytes,1,rep,name=updates" json:"updates,omitempty"`
|
||||
}
|
||||
@@ -326,6 +334,22 @@ func (m *InstallProfile) GetPayload() []byte {
|
||||
return nil
|
||||
}
|
||||
|
||||
type RemoveProfile struct {
|
||||
Identifier string `protobuf:"bytes,1,opt,name=identifier" json:"identifier,omitempty"`
|
||||
}
|
||||
|
||||
func (m *RemoveProfile) Reset() { *m = RemoveProfile{} }
|
||||
func (m *RemoveProfile) String() string { return proto.CompactTextString(m) }
|
||||
func (*RemoveProfile) ProtoMessage() {}
|
||||
func (*RemoveProfile) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{10} }
|
||||
|
||||
func (m *RemoveProfile) GetIdentifier() string {
|
||||
if m != nil {
|
||||
return m.Identifier
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
type InstallApplication struct {
|
||||
ItunesStoreId int64 `protobuf:"varint,1,opt,name=itunes_store_id,json=itunesStoreId" json:"itunes_store_id,omitempty"`
|
||||
Identifier string `protobuf:"bytes,2,opt,name=identifier" json:"identifier,omitempty"`
|
||||
@@ -338,7 +362,7 @@ type InstallApplication struct {
|
||||
func (m *InstallApplication) Reset() { *m = InstallApplication{} }
|
||||
func (m *InstallApplication) String() string { return proto.CompactTextString(m) }
|
||||
func (*InstallApplication) ProtoMessage() {}
|
||||
func (*InstallApplication) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{10} }
|
||||
func (*InstallApplication) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{11} }
|
||||
|
||||
func (m *InstallApplication) GetItunesStoreId() int64 {
|
||||
if m != nil {
|
||||
@@ -393,62 +417,66 @@ func init() {
|
||||
proto.RegisterType((*AutoSetupAdminAccounts)(nil), "commandproto.AutoSetupAdminAccounts")
|
||||
proto.RegisterType((*DeviceInformation)(nil), "commandproto.DeviceInformation")
|
||||
proto.RegisterType((*InstallProfile)(nil), "commandproto.InstallProfile")
|
||||
proto.RegisterType((*RemoveProfile)(nil), "commandproto.RemoveProfile")
|
||||
proto.RegisterType((*InstallApplication)(nil), "commandproto.InstallApplication")
|
||||
}
|
||||
|
||||
func init() { proto.RegisterFile("command.proto", fileDescriptor0) }
|
||||
func init() { proto.RegisterFile("command/internal/commandproto/command.proto", fileDescriptor0) }
|
||||
|
||||
var fileDescriptor0 = []byte{
|
||||
// 813 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0x74, 0x94, 0x5b, 0x6f, 0x1b, 0x45,
|
||||
0x14, 0xc7, 0x65, 0x3b, 0x89, 0xed, 0xe3, 0xdc, 0x3a, 0x38, 0xe9, 0x22, 0xa0, 0x31, 0x1b, 0x40,
|
||||
0x29, 0x82, 0x80, 0x8a, 0xc4, 0x7b, 0xd4, 0x16, 0x11, 0x41, 0xdb, 0x30, 0xc6, 0x20, 0x1e, 0xd0,
|
||||
0x68, 0xd8, 0x19, 0xdb, 0xa3, 0xee, 0xce, 0x6c, 0xe7, 0x52, 0xe4, 0x07, 0x9e, 0xf8, 0x04, 0xbc,
|
||||
0xf1, 0xc2, 0x77, 0x45, 0x3b, 0x17, 0xc7, 0xb7, 0xbe, 0xf9, 0xfc, 0xe7, 0x3f, 0xbf, 0x73, 0xc6,
|
||||
0xe7, 0xec, 0x81, 0xa3, 0x42, 0x55, 0x15, 0x95, 0xec, 0xba, 0xd6, 0xca, 0x2a, 0x74, 0x18, 0x43,
|
||||
0x1f, 0xe5, 0x7f, 0xc1, 0xfe, 0xf3, 0xb7, 0x5c, 0x5a, 0x74, 0x0c, 0x6d, 0xc1, 0xb2, 0xd6, 0xa8,
|
||||
0x75, 0xd5, 0xc7, 0x6d, 0xc1, 0x10, 0x82, 0x3d, 0x2b, 0x2a, 0x9e, 0xb5, 0x47, 0xad, 0xab, 0x0e,
|
||||
0xf6, 0xbf, 0xd1, 0x57, 0xd0, 0xad, 0xe9, 0xa2, 0x54, 0x94, 0x65, 0x9d, 0x51, 0xeb, 0x6a, 0xf0,
|
||||
0xe4, 0xec, 0x7a, 0x15, 0x76, 0x7d, 0x17, 0x0e, 0x71, 0x72, 0xa1, 0x0b, 0x18, 0x30, 0xfe, 0x56,
|
||||
0x14, 0x9c, 0x38, 0x26, 0x58, 0xb6, 0xe7, 0xe9, 0x10, 0xa4, 0x09, 0x13, 0x2c, 0xff, 0x1d, 0xba,
|
||||
0xf1, 0x12, 0xfa, 0x18, 0x52, 0x65, 0xc4, 0xb9, 0x65, 0x29, 0x83, 0xa8, 0x4d, 0x9c, 0x60, 0x4d,
|
||||
0xfe, 0x18, 0xfa, 0xb2, 0xb6, 0xf2, 0x3f, 0x0d, 0x01, 0x4e, 0xae, 0xfc, 0xdf, 0x3d, 0xe8, 0x46,
|
||||
0xb1, 0xe1, 0x6b, 0xfe, 0xc6, 0x71, 0x63, 0x89, 0x5d, 0xd4, 0x3c, 0xf1, 0xa3, 0xf6, 0xf3, 0xa2,
|
||||
0xe6, 0xe8, 0x25, 0xa0, 0x58, 0xae, 0x90, 0x53, 0xa5, 0x2b, 0x6a, 0x85, 0x92, 0x31, 0xd5, 0xc5,
|
||||
0x7a, 0xaa, 0x67, 0xde, 0x77, 0x7b, 0x6f, 0xc3, 0x0f, 0xd8, 0xa6, 0x84, 0x9e, 0xc3, 0x89, 0x90,
|
||||
0xc6, 0xd2, 0xb2, 0x24, 0xb5, 0x56, 0x53, 0x51, 0xf2, 0xf8, 0xbf, 0x7d, 0xb8, 0x0e, 0xbb, 0x0d,
|
||||
0xa6, 0xbb, 0xe0, 0xc1, 0xc7, 0x62, 0x2d, 0x46, 0x3f, 0xc1, 0x7b, 0x09, 0x43, 0xeb, 0xba, 0x14,
|
||||
0x45, 0xa8, 0x6b, 0xcf, 0xa3, 0x46, 0x3b, 0x51, 0x37, 0xf7, 0x3e, 0x8c, 0xc4, 0x96, 0x86, 0x7e,
|
||||
0x85, 0x33, 0x5a, 0x14, 0xca, 0x49, 0x4b, 0x0a, 0x25, 0xa7, 0x62, 0xe6, 0x74, 0x80, 0xee, 0x7b,
|
||||
0x68, 0xbe, 0x0e, 0xbd, 0x09, 0xd6, 0xa7, 0xab, 0x4e, 0x3c, 0xa4, 0x3b, 0x54, 0xf4, 0x23, 0x20,
|
||||
0x53, 0xcc, 0x39, 0x73, 0x25, 0x27, 0xca, 0x10, 0x57, 0x33, 0x6a, 0x79, 0x76, 0xe0, 0xa9, 0x8f,
|
||||
0xd6, 0xa9, 0xe3, 0xe8, 0x7b, 0x35, 0x9e, 0x78, 0x17, 0x3e, 0x4d, 0x37, 0x5f, 0x99, 0xa0, 0xa0,
|
||||
0xdf, 0xe0, 0xe1, 0x36, 0x8d, 0x98, 0x82, 0xca, 0xac, 0xbb, 0xab, 0xd0, 0x4d, 0xe4, 0xb8, 0xa0,
|
||||
0x12, 0x0f, 0x37, 0xb1, 0x8d, 0x9a, 0x3f, 0x83, 0xd3, 0x4d, 0x37, 0xfa, 0x1a, 0xba, 0x21, 0x85,
|
||||
0xc9, 0x5a, 0xa3, 0xce, 0xd5, 0xe0, 0xc9, 0xf9, 0x3a, 0x7e, 0x59, 0x69, 0xb2, 0xe5, 0x18, 0x7a,
|
||||
0xcb, 0xdb, 0x17, 0x30, 0xa8, 0xb5, 0x62, 0xae, 0xb0, 0xe4, 0x35, 0x5f, 0xc4, 0xf9, 0x82, 0x28,
|
||||
0xfd, 0xc0, 0x17, 0xe8, 0x53, 0x38, 0x5e, 0xf6, 0xb1, 0x58, 0x8e, 0x56, 0x1f, 0x1f, 0xa5, 0x06,
|
||||
0x79, 0x31, 0xff, 0x02, 0x86, 0xbb, 0xde, 0x81, 0x86, 0xb0, 0x3f, 0x55, 0xba, 0x08, 0x93, 0xdb,
|
||||
0xc3, 0x21, 0xc8, 0xff, 0x6b, 0xc3, 0xf0, 0x66, 0x77, 0x27, 0x2e, 0xcd, 0x6b, 0x51, 0x93, 0x5a,
|
||||
0x8b, 0x8a, 0xea, 0x05, 0x31, 0xdc, 0xba, 0x9a, 0x2c, 0xbb, 0xae, 0x79, 0x68, 0x78, 0x80, 0x5d,
|
||||
0x34, 0xd6, 0xbb, 0xe0, 0x1c, 0x37, 0xc6, 0x84, 0x8c, 0x36, 0xf4, 0x0b, 0x3c, 0x36, 0xdc, 0xbe,
|
||||
0x03, 0x46, 0x0d, 0xd1, 0x7c, 0xe6, 0x4a, 0xaa, 0x89, 0x33, 0x5c, 0xfb, 0x67, 0xf5, 0xf0, 0xa5,
|
||||
0xe1, 0x76, 0x07, 0xf2, 0xc6, 0xe0, 0xe0, 0x9d, 0x18, 0xae, 0x11, 0x81, 0xf7, 0xa9, 0xb3, 0x2a,
|
||||
0x01, 0x59, 0x25, 0x64, 0xc2, 0x9a, 0xac, 0xe3, 0x9b, 0xf0, 0xc9, 0xc6, 0x30, 0x3a, 0xab, 0x02,
|
||||
0xaf, 0x31, 0x47, 0xa8, 0xc1, 0xe7, 0x74, 0xa7, 0x9e, 0xff, 0xd3, 0x82, 0xf3, 0xdd, 0x57, 0xd0,
|
||||
0x47, 0x00, 0x66, 0xae, 0xb4, 0x25, 0x92, 0x56, 0x69, 0x1f, 0xf4, 0xbd, 0xf2, 0x92, 0x56, 0x1c,
|
||||
0x7d, 0x00, 0xfd, 0xa9, 0x2b, 0xcb, 0x70, 0x1a, 0x3a, 0xd5, 0x6b, 0x04, 0x7f, 0x78, 0x09, 0x47,
|
||||
0x35, 0x35, 0xe6, 0x4f, 0xa5, 0x19, 0x99, 0x53, 0x33, 0xf7, 0x1f, 0xf6, 0x21, 0x3e, 0x4c, 0xe2,
|
||||
0xf7, 0xd4, 0xcc, 0xd1, 0x39, 0x1c, 0xcc, 0x05, 0x63, 0x3c, 0x7c, 0xab, 0x3d, 0x1c, 0xa3, 0xfc,
|
||||
0x4b, 0x78, 0xb0, 0xb5, 0x3f, 0x50, 0x06, 0xdd, 0x37, 0x8e, 0x6b, 0x11, 0x87, 0xaf, 0x8f, 0x53,
|
||||
0x98, 0x7f, 0x0e, 0xc7, 0xeb, 0x1b, 0xa2, 0xf1, 0xa6, 0x45, 0xdc, 0xf2, 0x79, 0x53, 0x98, 0xff,
|
||||
0xdd, 0x06, 0xb4, 0xbd, 0x03, 0xd0, 0x67, 0x70, 0x22, 0xac, 0x93, 0xdc, 0x10, 0x63, 0x95, 0xe6,
|
||||
0x24, 0xee, 0xd7, 0x0e, 0x3e, 0x0a, 0xf2, 0xb8, 0x51, 0x6f, 0x19, 0x7a, 0x04, 0x20, 0x18, 0x97,
|
||||
0x56, 0x4c, 0x45, 0xec, 0x63, 0x1f, 0xaf, 0x28, 0xcd, 0x12, 0xad, 0xa8, 0x14, 0xd3, 0x66, 0x8b,
|
||||
0x3a, 0x5d, 0xfa, 0x57, 0xf7, 0xf1, 0x20, 0x69, 0x13, 0x5d, 0xa2, 0xc7, 0x70, 0x5a, 0x51, 0x49,
|
||||
0x67, 0xbc, 0xe2, 0xd2, 0x92, 0x69, 0x49, 0x67, 0xc6, 0x3f, 0xbf, 0x83, 0x4f, 0xee, 0xf5, 0xef,
|
||||
0x1a, 0xb9, 0xf9, 0x62, 0xa4, 0xb2, 0x24, 0xc8, 0xcc, 0xef, 0x9e, 0x1e, 0x06, 0xa9, 0xec, 0x8b,
|
||||
0xa0, 0xa0, 0x6f, 0xe1, 0x61, 0x31, 0xa7, 0x72, 0xc6, 0xc9, 0x0a, 0xd2, 0xd8, 0xb4, 0x52, 0xfa,
|
||||
0xf8, 0x2c, 0x1c, 0xbf, 0x58, 0x9e, 0x8e, 0x9b, 0xc3, 0x3f, 0x0e, 0xfc, 0xa8, 0x7c, 0xf3, 0x7f,
|
||||
0x00, 0x00, 0x00, 0xff, 0xff, 0x1b, 0x5a, 0x6f, 0x19, 0xfb, 0x06, 0x00, 0x00,
|
||||
// 861 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x74, 0x94, 0xdd, 0x72, 0x1b, 0x35,
|
||||
0x14, 0xc7, 0xc7, 0x76, 0x12, 0xdb, 0xc7, 0xb1, 0x93, 0x0a, 0x27, 0x35, 0x53, 0x68, 0xcc, 0x06,
|
||||
0x98, 0x94, 0x8f, 0x84, 0x29, 0x33, 0xdc, 0x87, 0xb6, 0x0c, 0x19, 0x68, 0x1b, 0x64, 0x0c, 0xc3,
|
||||
0x05, 0xa3, 0x11, 0x2b, 0xd9, 0xd6, 0x74, 0x57, 0xda, 0xea, 0x23, 0x8c, 0x2f, 0xb8, 0xe2, 0x09,
|
||||
0x78, 0x00, 0xde, 0x8c, 0x87, 0x61, 0x56, 0x5a, 0x39, 0x5e, 0xdb, 0xbd, 0xf3, 0xf9, 0x9f, 0xbf,
|
||||
0x7e, 0x3a, 0xd6, 0x39, 0x7b, 0xe0, 0xf3, 0x54, 0xe5, 0x39, 0x95, 0xec, 0x4a, 0x48, 0xcb, 0xb5,
|
||||
0xa4, 0xd9, 0x55, 0x25, 0x14, 0x5a, 0x59, 0x15, 0x83, 0x4b, 0x1f, 0xa1, 0xc3, 0xf5, 0x5c, 0xf2,
|
||||
0x17, 0xec, 0xbf, 0xb8, 0xe3, 0xd2, 0xa2, 0x01, 0x34, 0x05, 0x1b, 0x35, 0xc6, 0x8d, 0x8b, 0x2e,
|
||||
0x6e, 0x0a, 0x86, 0x10, 0xec, 0x59, 0x91, 0xf3, 0x51, 0x73, 0xdc, 0xb8, 0x68, 0x61, 0xff, 0x1b,
|
||||
0x5d, 0x41, 0xbb, 0xa0, 0xcb, 0x4c, 0x51, 0x36, 0x6a, 0x8d, 0x1b, 0x17, 0xbd, 0xa7, 0x27, 0x97,
|
||||
0xeb, 0xb0, 0xcb, 0xdb, 0x90, 0xc4, 0xd1, 0x85, 0xce, 0xa0, 0xc7, 0xf8, 0x9d, 0x48, 0x39, 0x71,
|
||||
0x4c, 0xb0, 0xd1, 0x9e, 0xa7, 0x43, 0x90, 0xa6, 0x4c, 0xb0, 0xe4, 0x77, 0x68, 0x57, 0x87, 0xd0,
|
||||
0x47, 0x10, 0x2b, 0x23, 0xce, 0xad, 0x4a, 0xe9, 0x55, 0xda, 0xd4, 0x09, 0x56, 0xde, 0x5f, 0x85,
|
||||
0xbe, 0xac, 0xad, 0xfb, 0x9f, 0x85, 0x00, 0x47, 0x57, 0xf2, 0xdf, 0x1e, 0xb4, 0x2b, 0xb1, 0xe4,
|
||||
0x6b, 0xfe, 0xd6, 0x71, 0x63, 0x89, 0x5d, 0x16, 0x3c, 0xf2, 0x2b, 0xed, 0xe7, 0x65, 0xc1, 0xd1,
|
||||
0x2b, 0x40, 0x55, 0xb9, 0x42, 0xce, 0x94, 0xce, 0xa9, 0x15, 0x4a, 0x56, 0x57, 0x9d, 0xd5, 0xaf,
|
||||
0x7a, 0xee, 0x7d, 0x37, 0xf7, 0x36, 0xfc, 0x80, 0x6d, 0x4a, 0xe8, 0x05, 0x1c, 0x09, 0x69, 0x2c,
|
||||
0xcd, 0x32, 0x52, 0x68, 0x35, 0x13, 0x19, 0xaf, 0xde, 0xed, 0x83, 0x3a, 0xec, 0x26, 0x98, 0x6e,
|
||||
0x83, 0x07, 0x0f, 0x44, 0x2d, 0x46, 0x3f, 0xc1, 0x7b, 0x11, 0x43, 0x8b, 0x22, 0x13, 0x69, 0xa8,
|
||||
0x6b, 0xcf, 0xa3, 0xc6, 0x3b, 0x51, 0xd7, 0xf7, 0x3e, 0x8c, 0xc4, 0x96, 0x86, 0x7e, 0x85, 0x13,
|
||||
0x9a, 0xa6, 0xca, 0x49, 0x4b, 0x52, 0x25, 0x67, 0x62, 0xee, 0x74, 0x80, 0xee, 0x7b, 0x68, 0x52,
|
||||
0x87, 0x5e, 0x07, 0xeb, 0xb3, 0x75, 0x27, 0x1e, 0xd2, 0x1d, 0x2a, 0xfa, 0x11, 0x90, 0x49, 0x17,
|
||||
0x9c, 0xb9, 0x8c, 0x13, 0x65, 0x88, 0x2b, 0x18, 0xb5, 0x7c, 0x74, 0xe0, 0xa9, 0x8f, 0xeb, 0xd4,
|
||||
0x49, 0xe5, 0x7b, 0x3d, 0x99, 0x7a, 0x17, 0x3e, 0x8e, 0x27, 0x5f, 0x9b, 0xa0, 0xa0, 0xdf, 0xe0,
|
||||
0xe1, 0x36, 0x8d, 0x98, 0x94, 0xca, 0x51, 0x7b, 0x57, 0xa1, 0x9b, 0xc8, 0x49, 0x4a, 0x25, 0x1e,
|
||||
0x6e, 0x62, 0x4b, 0x15, 0x7d, 0x0b, 0x03, 0xcd, 0x73, 0x75, 0xc7, 0x57, 0xad, 0xe9, 0x78, 0xe2,
|
||||
0xa3, 0x3a, 0x11, 0x7b, 0x4f, 0xec, 0x4c, 0x5f, 0xaf, 0x87, 0xc9, 0x73, 0x38, 0xde, 0xbc, 0x11,
|
||||
0x7d, 0x05, 0xed, 0x50, 0xa6, 0x19, 0x35, 0xc6, 0xad, 0x8b, 0xde, 0xd3, 0xd3, 0x3a, 0x70, 0xf5,
|
||||
0x6f, 0xa3, 0x2d, 0xc1, 0xd0, 0x59, 0x9d, 0x3e, 0x83, 0x5e, 0xa1, 0x15, 0x73, 0xa9, 0x25, 0x6f,
|
||||
0xf8, 0xb2, 0x9a, 0x51, 0xa8, 0xa4, 0x1f, 0xf8, 0x12, 0x7d, 0x02, 0x83, 0xd5, 0x2c, 0xa4, 0xab,
|
||||
0xf1, 0xec, 0xe2, 0x7e, 0x6c, 0xb2, 0x17, 0x93, 0x2f, 0x60, 0xb8, 0xeb, 0x2d, 0xd0, 0x10, 0xf6,
|
||||
0x67, 0x4a, 0xa7, 0x61, 0xfa, 0x3b, 0x38, 0x04, 0xc9, 0xbf, 0x4d, 0x18, 0x5e, 0xef, 0xee, 0xe6,
|
||||
0xb9, 0x79, 0x23, 0x0a, 0x52, 0x68, 0x91, 0x53, 0xbd, 0x24, 0x86, 0x5b, 0x57, 0x90, 0xd5, 0xe4,
|
||||
0x68, 0x1e, 0x86, 0x26, 0xc0, 0xce, 0x4a, 0xeb, 0x6d, 0x70, 0x4e, 0x4a, 0x63, 0x44, 0x56, 0x36,
|
||||
0xf4, 0x0b, 0x3c, 0x31, 0xdc, 0xbe, 0x03, 0x46, 0x0d, 0xd1, 0x7c, 0xee, 0x32, 0xaa, 0x89, 0x33,
|
||||
0x5c, 0xfb, 0xbf, 0xd5, 0xc1, 0xe7, 0x86, 0xdb, 0x1d, 0xc8, 0x6b, 0x83, 0x83, 0x77, 0x6a, 0xb8,
|
||||
0x46, 0x04, 0xde, 0xa7, 0xce, 0xaa, 0x08, 0x64, 0xb9, 0x90, 0x11, 0x6b, 0x46, 0x2d, 0xdf, 0x84,
|
||||
0x8f, 0x37, 0x06, 0xda, 0x59, 0x15, 0x78, 0xa5, 0xb9, 0x82, 0x1a, 0x7c, 0x4a, 0x77, 0xea, 0xc9,
|
||||
0x3f, 0x0d, 0x38, 0xdd, 0x7d, 0x04, 0x7d, 0x08, 0x60, 0x16, 0x4a, 0x5b, 0x22, 0x69, 0x1e, 0x77,
|
||||
0x4a, 0xd7, 0x2b, 0xaf, 0x68, 0xce, 0xd1, 0x23, 0xe8, 0xce, 0x5c, 0x96, 0x85, 0x6c, 0xe8, 0x54,
|
||||
0xa7, 0x14, 0x7c, 0xf2, 0x1c, 0xfa, 0x05, 0x35, 0xe6, 0x4f, 0xa5, 0x19, 0x59, 0x50, 0xb3, 0xf0,
|
||||
0xcb, 0xe1, 0x10, 0x1f, 0x46, 0xf1, 0x7b, 0x6a, 0x16, 0xe8, 0x14, 0x0e, 0x16, 0x82, 0x31, 0x1e,
|
||||
0xbe, 0xf7, 0x0e, 0xae, 0xa2, 0xe4, 0x4b, 0x78, 0xb0, 0xb5, 0x83, 0xd0, 0x08, 0xda, 0x6f, 0x1d,
|
||||
0xd7, 0xa2, 0x1a, 0xbe, 0x2e, 0x8e, 0x61, 0xf2, 0x19, 0x0c, 0xea, 0x5b, 0xa6, 0xf4, 0xc6, 0x65,
|
||||
0xde, 0xf0, 0xf7, 0xc6, 0x30, 0xb9, 0x82, 0x7e, 0x6d, 0xec, 0xd1, 0x63, 0x00, 0xc1, 0xb8, 0xb4,
|
||||
0x62, 0x26, 0xb8, 0x8e, 0x43, 0x79, 0xaf, 0x24, 0x7f, 0x37, 0x01, 0x6d, 0x2f, 0x1e, 0xf4, 0x29,
|
||||
0x1c, 0x09, 0xeb, 0x24, 0x37, 0xc4, 0x58, 0xa5, 0x39, 0xa9, 0x96, 0x7a, 0x0b, 0xf7, 0x83, 0x3c,
|
||||
0x29, 0xd5, 0x1b, 0xb6, 0x81, 0x6f, 0x6e, 0xe2, 0xcb, 0xcd, 0x9d, 0x53, 0x29, 0x66, 0xe5, 0xea,
|
||||
0x76, 0x3a, 0xf3, 0xcf, 0xd4, 0xc5, 0xbd, 0xa8, 0x4d, 0x75, 0x86, 0x9e, 0xc0, 0x71, 0x4e, 0x25,
|
||||
0x9d, 0xf3, 0x9c, 0x4b, 0x4b, 0x66, 0x19, 0x9d, 0x1b, 0xff, 0x5e, 0x2d, 0x7c, 0x74, 0xaf, 0x7f,
|
||||
0x57, 0xca, 0xe5, 0x27, 0x26, 0x95, 0x25, 0x41, 0x66, 0x7e, 0xe1, 0x75, 0x30, 0x48, 0x65, 0x5f,
|
||||
0x06, 0x05, 0x7d, 0x03, 0x0f, 0xd3, 0x05, 0x95, 0x73, 0x4e, 0xd6, 0x90, 0xc6, 0xc6, 0x3d, 0xd6,
|
||||
0xc5, 0x27, 0x21, 0xfd, 0x72, 0x95, 0x9d, 0x94, 0xc9, 0x3f, 0x0e, 0xfc, 0x6c, 0x7d, 0xfd, 0x7f,
|
||||
0x00, 0x00, 0x00, 0xff, 0xff, 0x7f, 0xe5, 0x91, 0x05, 0x8e, 0x07, 0x00, 0x00,
|
||||
}
|
||||
|
||||
@@ -22,6 +22,7 @@ message Command {
|
||||
AccountConfiguration account_configuration = 5;
|
||||
ScheduleOSUpdate schedule_os_update = 6;
|
||||
ScheduleOSUpdateScan schedule_os_update_scan = 7;
|
||||
RemoveProfile remove_profile = 8;
|
||||
}
|
||||
|
||||
message ScheduleOSUpdate {
|
||||
@@ -58,6 +59,10 @@ message InstallProfile {
|
||||
bytes payload = 1;
|
||||
}
|
||||
|
||||
message RemoveProfile {
|
||||
string identifier = 1;
|
||||
}
|
||||
|
||||
|
||||
message InstallApplication {
|
||||
int64 itunes_store_id = 1;
|
||||
|
||||
Reference in New Issue
Block a user