github.com/cloudwan/edgelq-sdk@v1.15.4/devices/resources/v1/tpm_attestation_cert/tpm_attestation_cert.pb.go (about) 1 // Code generated by protoc-gen-goten-go 2 // File: edgelq/devices/proto/v1/tpm_attestation_cert.proto 3 // DO NOT EDIT!!! 4 5 package tpm_attestation_cert 6 7 import ( 8 "fmt" 9 "reflect" 10 "sync" 11 12 "google.golang.org/protobuf/encoding/protojson" 13 "google.golang.org/protobuf/proto" 14 preflect "google.golang.org/protobuf/reflect/protoreflect" 15 "google.golang.org/protobuf/runtime/protoimpl" 16 ) 17 18 // proto imports 19 import ( 20 project "github.com/cloudwan/edgelq-sdk/devices/resources/v1/project" 21 meta "github.com/cloudwan/goten-sdk/types/meta" 22 ) 23 24 // Reference imports to suppress errors if they are not otherwise used. 25 var ( 26 _ = fmt.Errorf 27 _ = reflect.Method{} 28 _ = sync.Once{} 29 30 _ = protojson.MarshalOptions{} 31 _ = proto.MarshalOptions{} 32 _ = preflect.Value{} 33 _ = protoimpl.DescBuilder{} 34 ) 35 36 // make sure we're using proto imports 37 var ( 38 _ = &project.Project{} 39 _ = &meta.Meta{} 40 ) 41 42 const ( 43 // Verify that this generated code is sufficiently up-to-date. 44 _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) 45 // Verify that runtime/protoimpl is sufficiently up-to-date. 46 _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) 47 ) 48 49 // TpmAttestationCert Resource 50 type TpmAttestationCert struct { 51 state protoimpl.MessageState 52 sizeCache protoimpl.SizeCache 53 unknownFields protoimpl.UnknownFields 54 // Name of TpmAttestationCert 55 // When creating a new instance, this field is optional and if not provided, 56 // it will be generated automatically. Last ID segment must conform to the 57 // following regex: [a-z][a-z0-9\\-]{0,28}[a-z0-9] 58 Name *Name `protobuf:"bytes,1,opt,customtype=Name,name=name,proto3" json:"name,omitempty"` 59 // Metadata is an object with information like create, update and delete time 60 // (for async deleted resources), has user labels/annotations, sharding 61 // information, multi-region syncing information and may have non-schema 62 // owners (useful for taking ownership of resources belonging to lower level 63 // services by higher ones). 64 Metadata *meta.Meta `protobuf:"bytes,2,opt,name=metadata,proto3" json:"metadata,omitempty"` 65 DisplayName string `protobuf:"bytes,3,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"` 66 Manufacturer string `protobuf:"bytes,4,opt,name=manufacturer,proto3" json:"manufacturer,omitempty"` 67 // Should be in the format "productname (sku)" 68 ProductName string `protobuf:"bytes,5,opt,name=product_name,json=productName,proto3" json:"product_name,omitempty"` 69 TpmManufacturerCaCert string `protobuf:"bytes,6,opt,name=tpm_manufacturer_ca_cert,json=tpmManufacturerCaCert,proto3" json:"tpm_manufacturer_ca_cert,omitempty"` 70 IdevidIssuerCaCert string `protobuf:"bytes,7,opt,name=idevid_issuer_ca_cert,json=idevidIssuerCaCert,proto3" json:"idevid_issuer_ca_cert,omitempty"` 71 LdevidIssuerCaCert string `protobuf:"bytes,8,opt,name=ldevid_issuer_ca_cert,json=ldevidIssuerCaCert,proto3" json:"ldevid_issuer_ca_cert,omitempty"` 72 } 73 74 func (m *TpmAttestationCert) Reset() { 75 *m = TpmAttestationCert{} 76 if protoimpl.UnsafeEnabled { 77 mi := &edgelq_devices_proto_v1_tpm_attestation_cert_proto_msgTypes[0] 78 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 79 ms.StoreMessageInfo(mi) 80 } 81 } 82 83 func (m *TpmAttestationCert) String() string { 84 return protoimpl.X.MessageStringOf(m) 85 } 86 87 func (*TpmAttestationCert) ProtoMessage() {} 88 89 func (m *TpmAttestationCert) ProtoReflect() preflect.Message { 90 mi := &edgelq_devices_proto_v1_tpm_attestation_cert_proto_msgTypes[0] 91 if protoimpl.UnsafeEnabled && m != nil { 92 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 93 if ms.LoadMessageInfo() == nil { 94 ms.StoreMessageInfo(mi) 95 } 96 return ms 97 } 98 return mi.MessageOf(m) 99 } 100 101 func (*TpmAttestationCert) GotenMessage() {} 102 103 // Deprecated, Use TpmAttestationCert.ProtoReflect.Descriptor instead. 104 func (*TpmAttestationCert) Descriptor() ([]byte, []int) { 105 return edgelq_devices_proto_v1_tpm_attestation_cert_proto_rawDescGZIP(), []int{0} 106 } 107 108 func (m *TpmAttestationCert) Unmarshal(b []byte) error { 109 return proto.Unmarshal(b, m) 110 } 111 112 func (m *TpmAttestationCert) Marshal() ([]byte, error) { 113 return proto.Marshal(m) 114 } 115 116 func (m *TpmAttestationCert) MarshalJSON() ([]byte, error) { 117 return protojson.MarshalOptions{}.Marshal(m) 118 } 119 120 func (m *TpmAttestationCert) UnmarshalJSON(data []byte) error { 121 return protojson.Unmarshal(data, m) 122 } 123 124 func (m *TpmAttestationCert) GetName() *Name { 125 if m != nil { 126 return m.Name 127 } 128 return nil 129 } 130 131 func (m *TpmAttestationCert) GetMetadata() *meta.Meta { 132 if m != nil { 133 return m.Metadata 134 } 135 return nil 136 } 137 138 func (m *TpmAttestationCert) GetDisplayName() string { 139 if m != nil { 140 return m.DisplayName 141 } 142 return "" 143 } 144 145 func (m *TpmAttestationCert) GetManufacturer() string { 146 if m != nil { 147 return m.Manufacturer 148 } 149 return "" 150 } 151 152 func (m *TpmAttestationCert) GetProductName() string { 153 if m != nil { 154 return m.ProductName 155 } 156 return "" 157 } 158 159 func (m *TpmAttestationCert) GetTpmManufacturerCaCert() string { 160 if m != nil { 161 return m.TpmManufacturerCaCert 162 } 163 return "" 164 } 165 166 func (m *TpmAttestationCert) GetIdevidIssuerCaCert() string { 167 if m != nil { 168 return m.IdevidIssuerCaCert 169 } 170 return "" 171 } 172 173 func (m *TpmAttestationCert) GetLdevidIssuerCaCert() string { 174 if m != nil { 175 return m.LdevidIssuerCaCert 176 } 177 return "" 178 } 179 180 func (m *TpmAttestationCert) SetName(fv *Name) { 181 if m == nil { 182 panic(fmt.Errorf("can't set %s on nil %s", "Name", "TpmAttestationCert")) 183 } 184 m.Name = fv 185 } 186 187 func (m *TpmAttestationCert) SetMetadata(fv *meta.Meta) { 188 if m == nil { 189 panic(fmt.Errorf("can't set %s on nil %s", "Metadata", "TpmAttestationCert")) 190 } 191 m.Metadata = fv 192 } 193 194 func (m *TpmAttestationCert) SetDisplayName(fv string) { 195 if m == nil { 196 panic(fmt.Errorf("can't set %s on nil %s", "DisplayName", "TpmAttestationCert")) 197 } 198 m.DisplayName = fv 199 } 200 201 func (m *TpmAttestationCert) SetManufacturer(fv string) { 202 if m == nil { 203 panic(fmt.Errorf("can't set %s on nil %s", "Manufacturer", "TpmAttestationCert")) 204 } 205 m.Manufacturer = fv 206 } 207 208 func (m *TpmAttestationCert) SetProductName(fv string) { 209 if m == nil { 210 panic(fmt.Errorf("can't set %s on nil %s", "ProductName", "TpmAttestationCert")) 211 } 212 m.ProductName = fv 213 } 214 215 func (m *TpmAttestationCert) SetTpmManufacturerCaCert(fv string) { 216 if m == nil { 217 panic(fmt.Errorf("can't set %s on nil %s", "TpmManufacturerCaCert", "TpmAttestationCert")) 218 } 219 m.TpmManufacturerCaCert = fv 220 } 221 222 func (m *TpmAttestationCert) SetIdevidIssuerCaCert(fv string) { 223 if m == nil { 224 panic(fmt.Errorf("can't set %s on nil %s", "IdevidIssuerCaCert", "TpmAttestationCert")) 225 } 226 m.IdevidIssuerCaCert = fv 227 } 228 229 func (m *TpmAttestationCert) SetLdevidIssuerCaCert(fv string) { 230 if m == nil { 231 panic(fmt.Errorf("can't set %s on nil %s", "LdevidIssuerCaCert", "TpmAttestationCert")) 232 } 233 m.LdevidIssuerCaCert = fv 234 } 235 236 var edgelq_devices_proto_v1_tpm_attestation_cert_proto preflect.FileDescriptor 237 238 var edgelq_devices_proto_v1_tpm_attestation_cert_proto_rawDesc = []byte{ 239 0x0a, 0x32, 0x65, 0x64, 0x67, 0x65, 0x6c, 0x71, 0x2f, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x73, 240 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x76, 0x31, 0x2f, 0x74, 0x70, 0x6d, 0x5f, 0x61, 0x74, 241 0x74, 0x65, 0x73, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x65, 0x72, 0x74, 0x2e, 0x70, 242 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x0e, 0x6e, 0x74, 0x74, 0x2e, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 243 0x73, 0x2e, 0x76, 0x31, 0x1a, 0x19, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 244 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 245 0x20, 0x67, 0x6f, 0x74, 0x65, 0x6e, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 246 0x6e, 0x73, 0x2f, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 247 0x6f, 0x1a, 0x1d, 0x67, 0x6f, 0x74, 0x65, 0x6e, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 248 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x67, 0x6f, 0x74, 0x65, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 249 0x1a, 0x20, 0x67, 0x6f, 0x74, 0x65, 0x6e, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 250 0x6f, 0x6e, 0x73, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 251 0x74, 0x6f, 0x1a, 0x1d, 0x67, 0x6f, 0x74, 0x65, 0x6e, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 252 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 253 0x6f, 0x1a, 0x1f, 0x67, 0x6f, 0x74, 0x65, 0x6e, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 254 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 255 0x74, 0x6f, 0x1a, 0x24, 0x67, 0x6f, 0x74, 0x65, 0x6e, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 256 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x5f, 0x72, 0x65, 0x67, 0x69, 257 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x16, 0x67, 0x6f, 0x74, 0x65, 0x6e, 0x2f, 258 0x74, 0x79, 0x70, 0x65, 0x73, 0x2f, 0x6d, 0x65, 0x74, 0x61, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 259 0x22, 0xc2, 0x05, 0x0a, 0x12, 0x54, 0x70, 0x6d, 0x41, 0x74, 0x74, 0x65, 0x73, 0x74, 0x61, 0x74, 260 0x69, 0x6f, 0x6e, 0x43, 0x65, 0x72, 0x74, 0x12, 0x2e, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 261 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x1a, 0xb2, 0xda, 0x21, 0x16, 0x0a, 0x14, 0x0a, 0x12, 0x54, 262 0x70, 0x6d, 0x41, 0x74, 0x74, 0x65, 0x73, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x65, 0x72, 263 0x74, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x2d, 0x0a, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 264 0x61, 0x74, 0x61, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x67, 0x6f, 0x74, 0x65, 265 0x6e, 0x2e, 0x74, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4d, 0x65, 0x74, 0x61, 0x52, 0x08, 0x6d, 0x65, 266 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x2e, 0x0a, 0x0c, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 267 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 0x0b, 0xca, 0xc6, 268 0x27, 0x07, 0x2a, 0x05, 0x22, 0x03, 0x08, 0x80, 0x02, 0x52, 0x0b, 0x64, 0x69, 0x73, 0x70, 0x6c, 269 0x61, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x6d, 0x61, 0x6e, 0x75, 0x66, 0x61, 270 0x63, 0x74, 0x75, 0x72, 0x65, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x6d, 0x61, 271 0x6e, 0x75, 0x66, 0x61, 0x63, 0x74, 0x75, 0x72, 0x65, 0x72, 0x12, 0x21, 0x0a, 0x0c, 0x70, 0x72, 272 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 273 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x37, 0x0a, 274 0x18, 0x74, 0x70, 0x6d, 0x5f, 0x6d, 0x61, 0x6e, 0x75, 0x66, 0x61, 0x63, 0x74, 0x75, 0x72, 0x65, 275 0x72, 0x5f, 0x63, 0x61, 0x5f, 0x63, 0x65, 0x72, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 276 0x15, 0x74, 0x70, 0x6d, 0x4d, 0x61, 0x6e, 0x75, 0x66, 0x61, 0x63, 0x74, 0x75, 0x72, 0x65, 0x72, 277 0x43, 0x61, 0x43, 0x65, 0x72, 0x74, 0x12, 0x31, 0x0a, 0x15, 0x69, 0x64, 0x65, 0x76, 0x69, 0x64, 278 0x5f, 0x69, 0x73, 0x73, 0x75, 0x65, 0x72, 0x5f, 0x63, 0x61, 0x5f, 0x63, 0x65, 0x72, 0x74, 0x18, 279 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x12, 0x69, 0x64, 0x65, 0x76, 0x69, 0x64, 0x49, 0x73, 0x73, 280 0x75, 0x65, 0x72, 0x43, 0x61, 0x43, 0x65, 0x72, 0x74, 0x12, 0x31, 0x0a, 0x15, 0x6c, 0x64, 0x65, 281 0x76, 0x69, 0x64, 0x5f, 0x69, 0x73, 0x73, 0x75, 0x65, 0x72, 0x5f, 0x63, 0x61, 0x5f, 0x63, 0x65, 282 0x72, 0x74, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x12, 0x6c, 0x64, 0x65, 0x76, 0x69, 0x64, 283 0x49, 0x73, 0x73, 0x75, 0x65, 0x72, 0x43, 0x61, 0x43, 0x65, 0x72, 0x74, 0x3a, 0xb6, 0x02, 0xea, 284 0x41, 0x92, 0x01, 0x0a, 0x25, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x65, 0x64, 0x67, 285 0x65, 0x6c, 0x71, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x54, 0x70, 0x6d, 0x41, 0x74, 0x74, 0x65, 0x73, 286 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x65, 0x72, 0x74, 0x12, 0x2a, 0x74, 0x70, 0x6d, 0x41, 287 0x74, 0x74, 0x65, 0x73, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x65, 0x72, 0x74, 0x73, 0x2f, 288 0x7b, 0x74, 0x70, 0x6d, 0x5f, 0x61, 0x74, 0x74, 0x65, 0x73, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 289 0x5f, 0x63, 0x65, 0x72, 0x74, 0x7d, 0x12, 0x3d, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 290 0x2f, 0x7b, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x7d, 0x2f, 0x74, 0x70, 0x6d, 0x41, 0x74, 291 0x74, 0x65, 0x73, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x65, 0x72, 0x74, 0x73, 0x2f, 0x7b, 292 0x74, 0x70, 0x6d, 0x5f, 0x61, 0x74, 0x74, 0x65, 0x73, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 293 0x63, 0x65, 0x72, 0x74, 0x7d, 0x92, 0xd9, 0x21, 0x75, 0x0a, 0x13, 0x74, 0x70, 0x6d, 0x41, 0x74, 294 0x74, 0x65, 0x73, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x65, 0x72, 0x74, 0x73, 0x12, 0x13, 295 0x74, 0x70, 0x6d, 0x41, 0x74, 0x74, 0x65, 0x73, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x65, 296 0x72, 0x74, 0x73, 0x1a, 0x12, 0x67, 0x6f, 0x74, 0x65, 0x6e, 0x2e, 0x6e, 0x74, 0x74, 0x2e, 0x63, 297 0x6f, 0x6d, 0x2f, 0x4e, 0x6f, 0x6e, 0x65, 0x1a, 0x07, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 298 0x38, 0x05, 0x42, 0x2a, 0x08, 0x02, 0x12, 0x06, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x0e, 299 0x0a, 0x0c, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x0e, 300 0x0a, 0x0c, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0xb2, 0xdf, 301 0x21, 0x17, 0x12, 0x15, 0x0a, 0x0c, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x6e, 0x61, 302 0x6d, 0x65, 0x22, 0x05, 0x6d, 0x6f, 0x6e, 0x67, 0x6f, 0xda, 0x94, 0x23, 0x08, 0x12, 0x06, 0x0a, 303 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x42, 0xd9, 0x02, 0xe8, 0xde, 0x21, 0x01, 0xd2, 0xff, 0xd0, 0x02, 304 0x5e, 0x0a, 0x1a, 0x74, 0x70, 0x6d, 0x5f, 0x61, 0x74, 0x74, 0x65, 0x73, 0x74, 0x61, 0x74, 0x69, 305 0x6f, 0x6e, 0x5f, 0x63, 0x65, 0x72, 0x74, 0x5f, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x12, 0x40, 0x67, 306 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x77, 307 0x61, 0x6e, 0x2f, 0x65, 0x64, 0x67, 0x65, 0x6c, 0x71, 0x2f, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 308 0x73, 0x2f, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x2f, 0x76, 0x31, 0x2f, 0x74, 0x70, 0x6d, 0x5f, 0x61, 309 0x74, 0x74, 0x65, 0x73, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x65, 0x72, 0x74, 0xa2, 310 0x80, 0xd1, 0x02, 0x60, 0x0a, 0x1b, 0x74, 0x70, 0x6d, 0x5f, 0x61, 0x74, 0x74, 0x65, 0x73, 0x74, 311 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x65, 0x72, 0x74, 0x5f, 0x61, 0x63, 0x63, 0x65, 0x73, 312 0x73, 0x12, 0x41, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6c, 313 0x6f, 0x75, 0x64, 0x77, 0x61, 0x6e, 0x2f, 0x65, 0x64, 0x67, 0x65, 0x6c, 0x71, 0x2f, 0x64, 0x65, 314 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x2f, 0x76, 0x31, 0x2f, 315 0x74, 0x70, 0x6d, 0x5f, 0x61, 0x74, 0x74, 0x65, 0x73, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 316 0x63, 0x65, 0x72, 0x74, 0x0a, 0x15, 0x63, 0x6f, 0x6d, 0x2e, 0x6e, 0x74, 0x74, 0x2e, 0x64, 0x65, 317 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x70, 0x62, 0x2e, 0x76, 0x31, 0x42, 0x17, 0x54, 0x70, 0x6d, 318 0x41, 0x74, 0x74, 0x65, 0x73, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x65, 0x72, 0x74, 0x50, 319 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x59, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 320 0x6f, 0x6d, 0x2f, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x77, 0x61, 0x6e, 0x2f, 0x65, 0x64, 0x67, 0x65, 321 0x6c, 0x71, 0x2f, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 322 0x72, 0x63, 0x65, 0x73, 0x2f, 0x76, 0x31, 0x2f, 0x74, 0x70, 0x6d, 0x5f, 0x61, 0x74, 0x74, 0x65, 323 0x73, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x65, 0x72, 0x74, 0x3b, 0x74, 0x70, 0x6d, 324 0x5f, 0x61, 0x74, 0x74, 0x65, 0x73, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x65, 0x72, 325 0x74, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, 326 } 327 328 var ( 329 edgelq_devices_proto_v1_tpm_attestation_cert_proto_rawDescOnce sync.Once 330 edgelq_devices_proto_v1_tpm_attestation_cert_proto_rawDescData = edgelq_devices_proto_v1_tpm_attestation_cert_proto_rawDesc 331 ) 332 333 func edgelq_devices_proto_v1_tpm_attestation_cert_proto_rawDescGZIP() []byte { 334 edgelq_devices_proto_v1_tpm_attestation_cert_proto_rawDescOnce.Do(func() { 335 edgelq_devices_proto_v1_tpm_attestation_cert_proto_rawDescData = protoimpl.X.CompressGZIP(edgelq_devices_proto_v1_tpm_attestation_cert_proto_rawDescData) 336 }) 337 return edgelq_devices_proto_v1_tpm_attestation_cert_proto_rawDescData 338 } 339 340 var edgelq_devices_proto_v1_tpm_attestation_cert_proto_msgTypes = make([]protoimpl.MessageInfo, 1) 341 var edgelq_devices_proto_v1_tpm_attestation_cert_proto_goTypes = []interface{}{ 342 (*TpmAttestationCert)(nil), // 0: ntt.devices.v1.TpmAttestationCert 343 (*meta.Meta)(nil), // 1: goten.types.Meta 344 } 345 var edgelq_devices_proto_v1_tpm_attestation_cert_proto_depIdxs = []int32{ 346 1, // 0: ntt.devices.v1.TpmAttestationCert.metadata:type_name -> goten.types.Meta 347 1, // [1:1] is the sub-list for method output_type 348 1, // [1:1] is the sub-list for method input_type 349 1, // [1:1] is the sub-list for extension type_name 350 1, // [1:1] is the sub-list for extension extendee 351 0, // [0:1] is the sub-list for field type_name 352 } 353 354 func init() { edgelq_devices_proto_v1_tpm_attestation_cert_proto_init() } 355 func edgelq_devices_proto_v1_tpm_attestation_cert_proto_init() { 356 if edgelq_devices_proto_v1_tpm_attestation_cert_proto != nil { 357 return 358 } 359 if !protoimpl.UnsafeEnabled { 360 361 edgelq_devices_proto_v1_tpm_attestation_cert_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { 362 switch v := v.(*TpmAttestationCert); i { 363 case 0: 364 return &v.state 365 case 1: 366 return &v.sizeCache 367 case 2: 368 return &v.unknownFields 369 default: 370 return nil 371 } 372 } 373 } 374 375 type x struct{} 376 out := protoimpl.TypeBuilder{ 377 File: protoimpl.DescBuilder{ 378 GoPackagePath: reflect.TypeOf(x{}).PkgPath(), 379 RawDescriptor: edgelq_devices_proto_v1_tpm_attestation_cert_proto_rawDesc, 380 NumEnums: 0, 381 NumMessages: 1, 382 NumExtensions: 0, 383 NumServices: 0, 384 }, 385 GoTypes: edgelq_devices_proto_v1_tpm_attestation_cert_proto_goTypes, 386 DependencyIndexes: edgelq_devices_proto_v1_tpm_attestation_cert_proto_depIdxs, 387 MessageInfos: edgelq_devices_proto_v1_tpm_attestation_cert_proto_msgTypes, 388 }.Build() 389 edgelq_devices_proto_v1_tpm_attestation_cert_proto = out.File 390 edgelq_devices_proto_v1_tpm_attestation_cert_proto_rawDesc = nil 391 edgelq_devices_proto_v1_tpm_attestation_cert_proto_goTypes = nil 392 edgelq_devices_proto_v1_tpm_attestation_cert_proto_depIdxs = nil 393 }