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

     1  syntax = "proto3";
     2  
     3  package ntt.iam.v1;
     4  
     5  import "edgelq-sdk/iam/proto/v1/invitation.proto";
     6  import "google/api/resource.proto";
     7  import "goten-sdk/types/meta.proto";
     8  
     9  option go_package = "github.com/cloudwan/edgelq-sdk/iam/resources/v1/organization_invitation;organization_invitation";
    10  option java_multiple_files = true;
    11  option java_outer_classname = "OrganizationInvitationProto";
    12  option java_package = "com.ntt.iam.pb.v1";
    13  
    14  // OrganizationInvitation Resource
    15  message OrganizationInvitation {
    16    option (google.api.resource) = {
    17      type : "iam.edgelq.com/OrganizationInvitation"
    18      pattern : "organizations/{organization}/organizationInvitations/"
    19                "{organization_invitation}"
    20    };
    21  
    22    // Name of OrganizationInvitation
    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 = 3;
    34  
    35    Invitation invitation = 2;
    36  }