github.com/cloudwan/edgelq-sdk@v1.15.4/devices/proto/v1/tpm_attestation_cert.proto (about) 1 syntax = "proto3"; 2 3 package ntt.devices.v1; 4 5 import "google/api/resource.proto"; 6 import "goten-sdk/types/meta.proto"; 7 8 option go_package = "github.com/cloudwan/edgelq-sdk/devices/resources/v1/tpm_attestation_cert;tpm_attestation_cert"; 9 option java_multiple_files = true; 10 option java_outer_classname = "TpmAttestationCertProto"; 11 option java_package = "com.ntt.devices.pb.v1"; 12 13 // TpmAttestationCert Resource 14 message TpmAttestationCert { 15 option (google.api.resource) = { 16 type : "devices.edgelq.com/TpmAttestationCert" 17 pattern : "tpmAttestationCerts/{tpm_attestation_cert}" 18 pattern : "projects/{project}/tpmAttestationCerts/{tpm_attestation_cert}" 19 }; 20 21 // Name of TpmAttestationCert 22 // When creating a new instance, this field is optional and if not provided, 23 // it will be generated automatically. Last ID segment must conform to the 24 // following regex: [a-z][a-z0-9\\-]{0,28}[a-z0-9] 25 string name = 1; 26 27 // Metadata is an object with information like create, update and delete time 28 // (for async deleted resources), has user labels/annotations, sharding 29 // information, multi-region syncing information and may have non-schema 30 // owners (useful for taking ownership of resources belonging to lower level 31 // services by higher ones). 32 goten.types.Meta metadata = 2; 33 34 string display_name = 3; 35 36 string manufacturer = 4; 37 38 // Should be in the format "productname (sku)" 39 string product_name = 5; 40 41 string tpm_manufacturer_ca_cert = 6; 42 43 string idevid_issuer_ca_cert = 7; 44 45 string ldevid_issuer_ca_cert = 8; 46 }