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

     1  syntax = "proto3";
     2  
     3  package ntt.iam.v1;
     4  
     5  import "edgelq-sdk/iam/proto/v1/common.proto";
     6  import "google/api/resource.proto";
     7  import "goten-sdk/types/meta.proto";
     8  import "goten-sdk/types/multi_region_policy.proto";
     9  
    10  option go_package = "github.com/cloudwan/edgelq-sdk/iam/resources/v1/project;project";
    11  option java_multiple_files = true;
    12  option java_outer_classname = "ProjectProto";
    13  option java_package = "com.ntt.iam.pb.v1";
    14  
    15  // Project Resource
    16  message Project {
    17    option (google.api.resource) = {
    18      type : "iam.edgelq.com/Project"
    19      pattern : "projects/{project}"
    20    };
    21  
    22    // Name of Project
    23    // When creating a new instance, this field is optional and if not provided,
    24    // it will be generated automatically. Last ID segment must conform to the
    25    // following regex: [a-z][a-z0-9\\-]{0,28}[a-z0-9]
    26    string name = 1;
    27  
    28    // Metadata is an object with information like create, update and delete time
    29    // (for async deleted resources), has user labels/annotations, sharding
    30    // information, multi-region syncing information and may have non-schema
    31    // owners (useful for taking ownership of resources belonging to lower level
    32    // services by higher ones).
    33    goten.types.Meta metadata = 6;
    34  
    35    // Title
    36    string title = 2;
    37  
    38    // Description
    39    string description = 13;
    40  
    41    // Parent organization
    42    string parent_organization = 3;
    43  
    44    // Multi region policy
    45    goten.types.MultiRegionPolicy multi_region_policy = 7;
    46  
    47    // Enabled services. This field is checked only for non-core edgelq services.
    48    repeated string enabled_services = 8;
    49  
    50    // Default business tier for core EdgeLQ services and all enabled services.
    51    BusinessTier business_tier = 9;
    52  
    53    // Overwrites business_tier for each service - it may also override value
    54    // for a core EdgeLQ service.
    55    repeated ServiceBusinessTier service_tiers = 10;
    56  
    57    // Top parent
    58    string root_organization = 4;
    59  
    60    // Full ancestry path
    61    repeated string ancestry_path = 5;
    62  
    63    // Service errors reported for this project
    64    map<string, ServiceErrors> service_errors = 11;
    65  
    66    // Internal field for services meta information synchronization
    67    int64 services_generation = 12;
    68  }