github.com/cloudwan/edgelq-sdk@v1.15.4/iam/proto/v1/project_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/project_invitation;project_invitation"; 10 option java_multiple_files = true; 11 option java_outer_classname = "ProjectInvitationProto"; 12 option java_package = "com.ntt.iam.pb.v1"; 13 14 // ProjectInvitation Resource 15 message ProjectInvitation { 16 option (google.api.resource) = { 17 type : "iam.edgelq.com/ProjectInvitation" 18 pattern : "projects/{project}/projectInvitations/{project_invitation}" 19 }; 20 21 // Name of ProjectInvitation 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 // Metadata is an object with information like create, update and delete time 28 // (for async deleted resources), has user labels/annotations, sharding 29 // information, multi-region syncing information and may have non-schema 30 // owners (useful for taking ownership of resources belonging to lower level 31 // services by higher ones). 32 goten.types.Meta metadata = 3; 33 34 // project display name (auto-generated). Present here as user doesn't have 35 // yet permission to fetch related project. 36 string project_display_name = 4; 37 38 Invitation invitation = 2; 39 }