github.com/cloudwan/edgelq-sdk@v1.15.4/devices/proto/v1alpha2/os_image_profile.proto (about)

     1  syntax = "proto3";
     2  
     3  package ntt.devices.v1alpha2;
     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/v1alpha2/os_image_profile;os_image_profile";
     9  option java_multiple_files = true;
    10  option java_outer_classname = "OsImageProfileProto";
    11  option java_package = "com.ntt.devices.pb.v1alpha2";
    12  
    13  // OsImageProfile Resource
    14  message OsImageProfile {
    15    option (google.api.resource) = {
    16      type : "devices.edgelq.com/OsImageProfile"
    17      pattern : "projects/{project}/regions/{region}/osImageProfiles/"
    18                "{os_image_profile}"
    19    };
    20  
    21    // Name of OsImageProfile
    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    goten.types.Meta metadata = 2;
    28  
    29    // Display name of the profile
    30    string display_name = 3;
    31  
    32    // Device type for the profile
    33    string device_type = 4;
    34  
    35    // Install runtimes and drivers for Hailo-8 and NVIDIA CUDA.
    36    bool install_ai_accelerator = 5;
    37  
    38    // Enable disk encryption
    39    bool encryption = 6;
    40  
    41    // Disk Mapping YAML configuration.
    42    string disk_mapping = 7;
    43  
    44    // Network Agent YAML configuration.
    45    string network_agent = 8;
    46  
    47    // NTP Server settings.
    48    string ntp = 9;
    49  
    50    // HTTP PROXY address
    51    string http_proxy = 10;
    52  
    53    // HTTPS PROXY address
    54    string https_proxy = 11;
    55  
    56    // NO Proxy addresses (comma separated).
    57    string no_proxy = 12;
    58  }