github.com/cloudwan/edgelq-sdk@v1.15.4/monitoring/proto/v4/project.proto (about)

     1  syntax = "proto3";
     2  
     3  package ntt.monitoring.v4;
     4  
     5  import "google/api/resource.proto";
     6  import "goten-sdk/types/meta.proto";
     7  import "goten-sdk/types/multi_region_policy.proto";
     8  
     9  option go_package = "github.com/cloudwan/edgelq-sdk/monitoring/resources/v4/project;project";
    10  option java_multiple_files = true;
    11  option java_outer_classname = "ProjectProto";
    12  option java_package = "com.ntt.monitoring.pb.v4";
    13  
    14  // Project Resource
    15  message Project {
    16    option (google.api.resource) = {
    17      type : "monitoring.edgelq.com/Project"
    18      pattern : "projects/{project}"
    19    };
    20  
    21    // Name of Project
    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    string title = 2;
    28  
    29    // Metadata is an object with information like create, update and delete time
    30    // (for async deleted resources), has user labels/annotations, sharding
    31    // information, multi-region syncing information and may have non-schema
    32    // owners (useful for taking ownership of resources belonging to lower level
    33    // services by higher ones).
    34    goten.types.Meta metadata = 3;
    35  
    36    // Multi region policy
    37    goten.types.MultiRegionPolicy multi_region_policy = 4;
    38  }