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

     1  syntax = "proto3";
     2  
     3  package ntt.iam.v1alpha2;
     4  
     5  import "edgelq-sdk/iam/proto/v1alpha2/project.proto";
     6  import "edgelq-sdk/iam/proto/v1alpha2/project_change.proto";
     7  import "google/protobuf/field_mask.proto";
     8  
     9  option go_package = "github.com/cloudwan/edgelq-sdk/iam/client/v1alpha2/project;project_client";
    10  option java_multiple_files = false;
    11  option java_outer_classname = "ProjectCustomProto";
    12  option java_package = "com.ntt.iam.pb.v1alpha2";
    13  
    14  // Request message for method [ListMyProjects][ntt.iam.v1alpha2.ListMyProjects]
    15  message ListMyProjectsRequest {
    16    // Requested page size. Server may return fewer Projects than requested.
    17    // If unspecified, server will pick an appropriate default.
    18    int32 page_size = 2;
    19  
    20    // A token identifying a page of results the server should return.
    21    // Typically, this is the value of
    22    // [ListProjectsResponse.next_page_token][ntt.iam.v1alpha2.ListProjectsResponse.next_page_token]
    23    string page_token = 3;
    24  
    25    // Order By -
    26    // https://cloud.google.com/apis/design/design_patterns#list_pagination list
    27    // of field path with order directive, either 'asc' or 'desc'. If direction is
    28    // not provided, 'asc' is assumed. e.g. "state.nested_field asc,
    29    // state.something.else desc, theme"
    30    string order_by = 4;
    31  
    32    // Filter - filter results by field criteria. Simplified SQL-like syntax with
    33    // following operators:
    34    // <=, >=, =, !=, <, >, LIKE, CONTAINS (aliases CONTAIN, HAS, HAVE), IN, IS
    35    // [NOT] NULL | NaN . Combine conditions with OR | AND example: 'meta.labels
    36    // CONTAINS "severity:important" OR (state.last_error_time >
    37    // "2018-11-15T10:00:00Z" AND state.status = "ERROR")'
    38    string filter = 5;
    39  
    40    // A FieldMask used to filter response fields. When present, only requested
    41    // fields will be present in each response item. Omitting field_mask results
    42    // will cause response items to contain all present fields.
    43    google.protobuf.FieldMask field_mask = 6;
    44  }
    45  
    46  // Response message for method [ListMyProjects][ntt.iam.v1alpha2.ListMyProjects]
    47  message ListMyProjectsResponse {
    48    // The list of Projects
    49    repeated Project projects = 1;
    50  
    51    // A token to retrieve previous page of results. Pass this value in the
    52    // [ListProjectsRequest.page_token][ntt.iam.v1alpha2.ListProjectsRequest.page_token]
    53    string prev_page_token = 3;
    54  
    55    // A token to retrieve next page of results. Pass this value in the
    56    // [ListProjectsRequest.page_token][ntt.iam.v1alpha2.ListProjectsRequest.page_token]
    57    string next_page_token = 4;
    58  }