github.com/cloudwan/edgelq-sdk@v1.15.4/iam/client/v1alpha2/organization/organization_custom.pb.go (about)

     1  // Code generated by protoc-gen-goten-go
     2  // File: edgelq/iam/proto/v1alpha2/organization_custom.proto
     3  // DO NOT EDIT!!!
     4  
     5  package organization_client
     6  
     7  import (
     8  	"fmt"
     9  	"reflect"
    10  	"sync"
    11  
    12  	"google.golang.org/protobuf/encoding/protojson"
    13  	"google.golang.org/protobuf/proto"
    14  	preflect "google.golang.org/protobuf/reflect/protoreflect"
    15  	"google.golang.org/protobuf/runtime/protoimpl"
    16  )
    17  
    18  // proto imports
    19  import (
    20  	organization "github.com/cloudwan/edgelq-sdk/iam/resources/v1alpha2/organization"
    21  	fieldmaskpb "google.golang.org/protobuf/types/known/fieldmaskpb"
    22  )
    23  
    24  // Reference imports to suppress errors if they are not otherwise used.
    25  var (
    26  	_ = fmt.Errorf
    27  	_ = reflect.Method{}
    28  	_ = sync.Once{}
    29  
    30  	_ = protojson.MarshalOptions{}
    31  	_ = proto.MarshalOptions{}
    32  	_ = preflect.Value{}
    33  	_ = protoimpl.DescBuilder{}
    34  )
    35  
    36  // make sure we're using proto imports
    37  var (
    38  	_ = &organization.Organization{}
    39  	_ = &fieldmaskpb.FieldMask{}
    40  )
    41  
    42  const (
    43  	// Verify that this generated code is sufficiently up-to-date.
    44  	_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
    45  	// Verify that runtime/protoimpl is sufficiently up-to-date.
    46  	_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
    47  )
    48  
    49  // Request message for method
    50  // [ListMyOrganizations][ntt.iam.v1alpha2.ListMyOrganizations]
    51  type ListMyOrganizationsRequest struct {
    52  	state         protoimpl.MessageState
    53  	sizeCache     protoimpl.SizeCache
    54  	unknownFields protoimpl.UnknownFields
    55  	// Requested page size. Server may return fewer Organizations than requested.
    56  	// If unspecified, server will pick an appropriate default.
    57  	PageSize int32 `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"`
    58  	// A token identifying a page of results the server should return.
    59  	// Typically, this is the value of
    60  	// [ListOrganizationsResponse.next_page_token][ntt.iam.v1alpha2.ListOrganizationsResponse.next_page_token]
    61  	PageToken *organization.PagerCursor `protobuf:"bytes,3,opt,customtype=PagerCursor,name=page_token,json=pageToken,proto3" json:"page_token,omitempty"`
    62  	// Order By -
    63  	// https://cloud.google.com/apis/design/design_patterns#list_pagination list
    64  	// of field path with order directive, either 'asc' or 'desc'. If direction is
    65  	// not provided, 'asc' is assumed. e.g. "state.nested_field asc,
    66  	// state.something.else desc, theme"
    67  	OrderBy *organization.OrderBy `protobuf:"bytes,4,opt,customtype=OrderBy,name=order_by,json=orderBy,proto3" json:"order_by,omitempty"`
    68  	// Filter - filter results by field criteria. Simplified SQL-like syntax with
    69  	// following operators:
    70  	// <=, >=, =, !=, <, >, LIKE, CONTAINS (aliases CONTAIN, HAS, HAVE), IN, IS
    71  	// [NOT] NULL | NaN . Combine conditions with OR | AND example: 'meta.labels
    72  	// CONTAINS "severity:important" OR (state.last_error_time >
    73  	// "2018-11-15T10:00:00Z" AND state.status = "ERROR")'
    74  	Filter *organization.Filter `protobuf:"bytes,5,opt,customtype=Filter,name=filter,proto3" json:"filter,omitempty"`
    75  	// A FieldMask used to filter response fields. When present, only requested
    76  	// fields will be present in each response item. Omitting field_mask results
    77  	// will cause response items to contain all present fields.
    78  	FieldMask *organization.Organization_FieldMask `protobuf:"bytes,6,opt,customtype=Organization_FieldMask,name=field_mask,json=fieldMask,proto3" json:"field_mask,omitempty"`
    79  }
    80  
    81  func (m *ListMyOrganizationsRequest) Reset() {
    82  	*m = ListMyOrganizationsRequest{}
    83  	if protoimpl.UnsafeEnabled {
    84  		mi := &edgelq_iam_proto_v1alpha2_organization_custom_proto_msgTypes[0]
    85  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m))
    86  		ms.StoreMessageInfo(mi)
    87  	}
    88  }
    89  
    90  func (m *ListMyOrganizationsRequest) String() string {
    91  	return protoimpl.X.MessageStringOf(m)
    92  }
    93  
    94  func (*ListMyOrganizationsRequest) ProtoMessage() {}
    95  
    96  func (m *ListMyOrganizationsRequest) ProtoReflect() preflect.Message {
    97  	mi := &edgelq_iam_proto_v1alpha2_organization_custom_proto_msgTypes[0]
    98  	if protoimpl.UnsafeEnabled && m != nil {
    99  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m))
   100  		if ms.LoadMessageInfo() == nil {
   101  			ms.StoreMessageInfo(mi)
   102  		}
   103  		return ms
   104  	}
   105  	return mi.MessageOf(m)
   106  }
   107  
   108  func (*ListMyOrganizationsRequest) GotenMessage() {}
   109  
   110  // Deprecated, Use ListMyOrganizationsRequest.ProtoReflect.Descriptor instead.
   111  func (*ListMyOrganizationsRequest) Descriptor() ([]byte, []int) {
   112  	return edgelq_iam_proto_v1alpha2_organization_custom_proto_rawDescGZIP(), []int{0}
   113  }
   114  
   115  func (m *ListMyOrganizationsRequest) Unmarshal(b []byte) error {
   116  	return proto.Unmarshal(b, m)
   117  }
   118  
   119  func (m *ListMyOrganizationsRequest) Marshal() ([]byte, error) {
   120  	return proto.Marshal(m)
   121  }
   122  
   123  func (m *ListMyOrganizationsRequest) MarshalJSON() ([]byte, error) {
   124  	return protojson.MarshalOptions{}.Marshal(m)
   125  }
   126  
   127  func (m *ListMyOrganizationsRequest) UnmarshalJSON(data []byte) error {
   128  	return protojson.Unmarshal(data, m)
   129  }
   130  
   131  func (m *ListMyOrganizationsRequest) GetPageSize() int32 {
   132  	if m != nil {
   133  		return m.PageSize
   134  	}
   135  	return int32(0)
   136  }
   137  
   138  func (m *ListMyOrganizationsRequest) GetPageToken() *organization.PagerCursor {
   139  	if m != nil {
   140  		return m.PageToken
   141  	}
   142  	return nil
   143  }
   144  
   145  func (m *ListMyOrganizationsRequest) GetOrderBy() *organization.OrderBy {
   146  	if m != nil {
   147  		return m.OrderBy
   148  	}
   149  	return nil
   150  }
   151  
   152  func (m *ListMyOrganizationsRequest) GetFilter() *organization.Filter {
   153  	if m != nil {
   154  		return m.Filter
   155  	}
   156  	return nil
   157  }
   158  
   159  func (m *ListMyOrganizationsRequest) GetFieldMask() *organization.Organization_FieldMask {
   160  	if m != nil {
   161  		return m.FieldMask
   162  	}
   163  	return nil
   164  }
   165  
   166  func (m *ListMyOrganizationsRequest) SetPageSize(fv int32) {
   167  	if m == nil {
   168  		panic(fmt.Errorf("can't set %s on nil %s", "PageSize", "ListMyOrganizationsRequest"))
   169  	}
   170  	m.PageSize = fv
   171  }
   172  
   173  func (m *ListMyOrganizationsRequest) SetPageToken(fv *organization.PagerCursor) {
   174  	if m == nil {
   175  		panic(fmt.Errorf("can't set %s on nil %s", "PageToken", "ListMyOrganizationsRequest"))
   176  	}
   177  	m.PageToken = fv
   178  }
   179  
   180  func (m *ListMyOrganizationsRequest) SetOrderBy(fv *organization.OrderBy) {
   181  	if m == nil {
   182  		panic(fmt.Errorf("can't set %s on nil %s", "OrderBy", "ListMyOrganizationsRequest"))
   183  	}
   184  	m.OrderBy = fv
   185  }
   186  
   187  func (m *ListMyOrganizationsRequest) SetFilter(fv *organization.Filter) {
   188  	if m == nil {
   189  		panic(fmt.Errorf("can't set %s on nil %s", "Filter", "ListMyOrganizationsRequest"))
   190  	}
   191  	m.Filter = fv
   192  }
   193  
   194  func (m *ListMyOrganizationsRequest) SetFieldMask(fv *organization.Organization_FieldMask) {
   195  	if m == nil {
   196  		panic(fmt.Errorf("can't set %s on nil %s", "FieldMask", "ListMyOrganizationsRequest"))
   197  	}
   198  	m.FieldMask = fv
   199  }
   200  
   201  // Response message for method
   202  // [ListMyOrganizations][ntt.iam.v1alpha2.ListMyOrganizations]
   203  type ListMyOrganizationsResponse struct {
   204  	state         protoimpl.MessageState
   205  	sizeCache     protoimpl.SizeCache
   206  	unknownFields protoimpl.UnknownFields
   207  	// The list of Organizations
   208  	Organizations []*organization.Organization `protobuf:"bytes,1,rep,name=organizations,proto3" json:"organizations,omitempty"`
   209  	// A token to retrieve previous page of results. Pass this value in the
   210  	// [ListOrganizationsRequest.page_token][ntt.iam.v1alpha2.ListOrganizationsRequest.page_token]
   211  	PrevPageToken *organization.PagerCursor `protobuf:"bytes,3,opt,customtype=PagerCursor,name=prev_page_token,json=prevPageToken,proto3" json:"prev_page_token,omitempty"`
   212  	// A token to retrieve next page of results. Pass this value in the
   213  	// [ListOrganizationsRequest.page_token][ntt.iam.v1alpha2.ListOrganizationsRequest.page_token]
   214  	NextPageToken *organization.PagerCursor `protobuf:"bytes,4,opt,customtype=PagerCursor,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"`
   215  }
   216  
   217  func (m *ListMyOrganizationsResponse) Reset() {
   218  	*m = ListMyOrganizationsResponse{}
   219  	if protoimpl.UnsafeEnabled {
   220  		mi := &edgelq_iam_proto_v1alpha2_organization_custom_proto_msgTypes[1]
   221  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m))
   222  		ms.StoreMessageInfo(mi)
   223  	}
   224  }
   225  
   226  func (m *ListMyOrganizationsResponse) String() string {
   227  	return protoimpl.X.MessageStringOf(m)
   228  }
   229  
   230  func (*ListMyOrganizationsResponse) ProtoMessage() {}
   231  
   232  func (m *ListMyOrganizationsResponse) ProtoReflect() preflect.Message {
   233  	mi := &edgelq_iam_proto_v1alpha2_organization_custom_proto_msgTypes[1]
   234  	if protoimpl.UnsafeEnabled && m != nil {
   235  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m))
   236  		if ms.LoadMessageInfo() == nil {
   237  			ms.StoreMessageInfo(mi)
   238  		}
   239  		return ms
   240  	}
   241  	return mi.MessageOf(m)
   242  }
   243  
   244  func (*ListMyOrganizationsResponse) GotenMessage() {}
   245  
   246  // Deprecated, Use ListMyOrganizationsResponse.ProtoReflect.Descriptor instead.
   247  func (*ListMyOrganizationsResponse) Descriptor() ([]byte, []int) {
   248  	return edgelq_iam_proto_v1alpha2_organization_custom_proto_rawDescGZIP(), []int{1}
   249  }
   250  
   251  func (m *ListMyOrganizationsResponse) Unmarshal(b []byte) error {
   252  	return proto.Unmarshal(b, m)
   253  }
   254  
   255  func (m *ListMyOrganizationsResponse) Marshal() ([]byte, error) {
   256  	return proto.Marshal(m)
   257  }
   258  
   259  func (m *ListMyOrganizationsResponse) MarshalJSON() ([]byte, error) {
   260  	return protojson.MarshalOptions{}.Marshal(m)
   261  }
   262  
   263  func (m *ListMyOrganizationsResponse) UnmarshalJSON(data []byte) error {
   264  	return protojson.Unmarshal(data, m)
   265  }
   266  
   267  func (m *ListMyOrganizationsResponse) GetOrganizations() []*organization.Organization {
   268  	if m != nil {
   269  		return m.Organizations
   270  	}
   271  	return nil
   272  }
   273  
   274  func (m *ListMyOrganizationsResponse) GetPrevPageToken() *organization.PagerCursor {
   275  	if m != nil {
   276  		return m.PrevPageToken
   277  	}
   278  	return nil
   279  }
   280  
   281  func (m *ListMyOrganizationsResponse) GetNextPageToken() *organization.PagerCursor {
   282  	if m != nil {
   283  		return m.NextPageToken
   284  	}
   285  	return nil
   286  }
   287  
   288  func (m *ListMyOrganizationsResponse) SetOrganizations(fv []*organization.Organization) {
   289  	if m == nil {
   290  		panic(fmt.Errorf("can't set %s on nil %s", "Organizations", "ListMyOrganizationsResponse"))
   291  	}
   292  	m.Organizations = fv
   293  }
   294  
   295  func (m *ListMyOrganizationsResponse) SetPrevPageToken(fv *organization.PagerCursor) {
   296  	if m == nil {
   297  		panic(fmt.Errorf("can't set %s on nil %s", "PrevPageToken", "ListMyOrganizationsResponse"))
   298  	}
   299  	m.PrevPageToken = fv
   300  }
   301  
   302  func (m *ListMyOrganizationsResponse) SetNextPageToken(fv *organization.PagerCursor) {
   303  	if m == nil {
   304  		panic(fmt.Errorf("can't set %s on nil %s", "NextPageToken", "ListMyOrganizationsResponse"))
   305  	}
   306  	m.NextPageToken = fv
   307  }
   308  
   309  var edgelq_iam_proto_v1alpha2_organization_custom_proto preflect.FileDescriptor
   310  
   311  var edgelq_iam_proto_v1alpha2_organization_custom_proto_rawDesc = []byte{
   312  	0x0a, 0x33, 0x65, 0x64, 0x67, 0x65, 0x6c, 0x71, 0x2f, 0x69, 0x61, 0x6d, 0x2f, 0x70, 0x72, 0x6f,
   313  	0x74, 0x6f, 0x2f, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x32, 0x2f, 0x6f, 0x72, 0x67, 0x61,
   314  	0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x2e,
   315  	0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x10, 0x6e, 0x74, 0x74, 0x2e, 0x69, 0x61, 0x6d, 0x2e, 0x76,
   316  	0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x32, 0x1a, 0x20, 0x67, 0x6f, 0x74, 0x65, 0x6e, 0x2f, 0x61,
   317  	0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x76, 0x61, 0x6c, 0x69, 0x64,
   318  	0x61, 0x74, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1d, 0x67, 0x6f, 0x74, 0x65, 0x6e,
   319  	0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x67, 0x6f, 0x74,
   320  	0x65, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x20, 0x65, 0x64, 0x67, 0x65, 0x6c, 0x71,
   321  	0x2f, 0x69, 0x61, 0x6d, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73,
   322  	0x2f, 0x69, 0x61, 0x6d, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x24, 0x65, 0x64, 0x67, 0x65,
   323  	0x6c, 0x71, 0x2f, 0x61, 0x75, 0x64, 0x69, 0x74, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74,
   324  	0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x61, 0x75, 0x64, 0x69, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
   325  	0x1a, 0x20, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
   326  	0x66, 0x2f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x6d, 0x61, 0x73, 0x6b, 0x2e, 0x70, 0x72, 0x6f,
   327  	0x74, 0x6f, 0x1a, 0x2c, 0x65, 0x64, 0x67, 0x65, 0x6c, 0x71, 0x2f, 0x69, 0x61, 0x6d, 0x2f, 0x70,
   328  	0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x32, 0x2f, 0x6f, 0x72,
   329  	0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
   330  	0x1a, 0x33, 0x65, 0x64, 0x67, 0x65, 0x6c, 0x71, 0x2f, 0x69, 0x61, 0x6d, 0x2f, 0x70, 0x72, 0x6f,
   331  	0x74, 0x6f, 0x2f, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x32, 0x2f, 0x6f, 0x72, 0x67, 0x61,
   332  	0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x2e,
   333  	0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xa8, 0x02, 0x0a, 0x1a, 0x4c, 0x69, 0x73, 0x74, 0x4d, 0x79,
   334  	0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x71,
   335  	0x75, 0x65, 0x73, 0x74, 0x12, 0x25, 0x0a, 0x09, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x69, 0x7a,
   336  	0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x42, 0x08, 0xca, 0xc6, 0x27, 0x04, 0x12, 0x02, 0x2a,
   337  	0x00, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x33, 0x0a, 0x0a, 0x70,
   338  	0x61, 0x67, 0x65, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42,
   339  	0x14, 0xb2, 0xda, 0x21, 0x10, 0x22, 0x0e, 0x0a, 0x0c, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a,
   340  	0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x09, 0x70, 0x61, 0x67, 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e,
   341  	0x12, 0x2f, 0x0a, 0x08, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x5f, 0x62, 0x79, 0x18, 0x04, 0x20, 0x01,
   342  	0x28, 0x09, 0x42, 0x14, 0xb2, 0xda, 0x21, 0x10, 0x2a, 0x0e, 0x0a, 0x0c, 0x4f, 0x72, 0x67, 0x61,
   343  	0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x07, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x42,
   344  	0x79, 0x12, 0x2c, 0x0a, 0x06, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28,
   345  	0x09, 0x42, 0x14, 0xb2, 0xda, 0x21, 0x10, 0x1a, 0x0e, 0x0a, 0x0c, 0x4f, 0x72, 0x67, 0x61, 0x6e,
   346  	0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x06, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x12,
   347  	0x4f, 0x0a, 0x0a, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x6d, 0x61, 0x73, 0x6b, 0x18, 0x06, 0x20,
   348  	0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
   349  	0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x42,
   350  	0x14, 0xb2, 0xda, 0x21, 0x10, 0x32, 0x0e, 0x0a, 0x0c, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a,
   351  	0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x09, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x4d, 0x61, 0x73, 0x6b,
   352  	0x22, 0xdf, 0x01, 0x0a, 0x1b, 0x4c, 0x69, 0x73, 0x74, 0x4d, 0x79, 0x4f, 0x72, 0x67, 0x61, 0x6e,
   353  	0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
   354  	0x12, 0x44, 0x0a, 0x0d, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e,
   355  	0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1e, 0x2e, 0x6e, 0x74, 0x74, 0x2e, 0x69, 0x61,
   356  	0x6d, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x32, 0x2e, 0x4f, 0x72, 0x67, 0x61, 0x6e,
   357  	0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x0d, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a,
   358  	0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x3c, 0x0a, 0x0f, 0x70, 0x72, 0x65, 0x76, 0x5f, 0x70,
   359  	0x61, 0x67, 0x65, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42,
   360  	0x14, 0xb2, 0xda, 0x21, 0x10, 0x22, 0x0e, 0x0a, 0x0c, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a,
   361  	0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x0d, 0x70, 0x72, 0x65, 0x76, 0x50, 0x61, 0x67, 0x65, 0x54,
   362  	0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x3c, 0x0a, 0x0f, 0x6e, 0x65, 0x78, 0x74, 0x5f, 0x70, 0x61, 0x67,
   363  	0x65, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x42, 0x14, 0xb2,
   364  	0xda, 0x21, 0x10, 0x22, 0x0e, 0x0a, 0x0c, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74,
   365  	0x69, 0x6f, 0x6e, 0x52, 0x0d, 0x6e, 0x65, 0x78, 0x74, 0x50, 0x61, 0x67, 0x65, 0x54, 0x6f, 0x6b,
   366  	0x65, 0x6e, 0x42, 0x85, 0x01, 0x0a, 0x17, 0x63, 0x6f, 0x6d, 0x2e, 0x6e, 0x74, 0x74, 0x2e, 0x69,
   367  	0x61, 0x6d, 0x2e, 0x70, 0x62, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x32, 0x42, 0x17,
   368  	0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x75, 0x73, 0x74,
   369  	0x6f, 0x6d, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x00, 0x5a, 0x4f, 0x67, 0x69, 0x74, 0x68, 0x75,
   370  	0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x77, 0x61, 0x6e, 0x2f, 0x65,
   371  	0x64, 0x67, 0x65, 0x6c, 0x71, 0x2f, 0x69, 0x61, 0x6d, 0x2f, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74,
   372  	0x2f, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x32, 0x2f, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69,
   373  	0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3b, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74,
   374  	0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74,
   375  	0x6f, 0x33,
   376  }
   377  
   378  var (
   379  	edgelq_iam_proto_v1alpha2_organization_custom_proto_rawDescOnce sync.Once
   380  	edgelq_iam_proto_v1alpha2_organization_custom_proto_rawDescData = edgelq_iam_proto_v1alpha2_organization_custom_proto_rawDesc
   381  )
   382  
   383  func edgelq_iam_proto_v1alpha2_organization_custom_proto_rawDescGZIP() []byte {
   384  	edgelq_iam_proto_v1alpha2_organization_custom_proto_rawDescOnce.Do(func() {
   385  		edgelq_iam_proto_v1alpha2_organization_custom_proto_rawDescData = protoimpl.X.CompressGZIP(edgelq_iam_proto_v1alpha2_organization_custom_proto_rawDescData)
   386  	})
   387  	return edgelq_iam_proto_v1alpha2_organization_custom_proto_rawDescData
   388  }
   389  
   390  var edgelq_iam_proto_v1alpha2_organization_custom_proto_msgTypes = make([]protoimpl.MessageInfo, 2)
   391  var edgelq_iam_proto_v1alpha2_organization_custom_proto_goTypes = []interface{}{
   392  	(*ListMyOrganizationsRequest)(nil),          // 0: ntt.iam.v1alpha2.ListMyOrganizationsRequest
   393  	(*ListMyOrganizationsResponse)(nil),         // 1: ntt.iam.v1alpha2.ListMyOrganizationsResponse
   394  	(*organization.Organization_FieldMask)(nil), // 2: ntt.iam.v1alpha2.Organization_FieldMask
   395  	(*organization.Organization)(nil),           // 3: ntt.iam.v1alpha2.Organization
   396  }
   397  var edgelq_iam_proto_v1alpha2_organization_custom_proto_depIdxs = []int32{
   398  	2, // 0: ntt.iam.v1alpha2.ListMyOrganizationsRequest.field_mask:type_name -> ntt.iam.v1alpha2.Organization_FieldMask
   399  	3, // 1: ntt.iam.v1alpha2.ListMyOrganizationsResponse.organizations:type_name -> ntt.iam.v1alpha2.Organization
   400  	2, // [2:2] is the sub-list for method output_type
   401  	2, // [2:2] is the sub-list for method input_type
   402  	2, // [2:2] is the sub-list for extension type_name
   403  	2, // [2:2] is the sub-list for extension extendee
   404  	0, // [0:2] is the sub-list for field type_name
   405  }
   406  
   407  func init() { edgelq_iam_proto_v1alpha2_organization_custom_proto_init() }
   408  func edgelq_iam_proto_v1alpha2_organization_custom_proto_init() {
   409  	if edgelq_iam_proto_v1alpha2_organization_custom_proto != nil {
   410  		return
   411  	}
   412  	if !protoimpl.UnsafeEnabled {
   413  
   414  		edgelq_iam_proto_v1alpha2_organization_custom_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
   415  			switch v := v.(*ListMyOrganizationsRequest); i {
   416  			case 0:
   417  				return &v.state
   418  			case 1:
   419  				return &v.sizeCache
   420  			case 2:
   421  				return &v.unknownFields
   422  			default:
   423  				return nil
   424  			}
   425  		}
   426  		edgelq_iam_proto_v1alpha2_organization_custom_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
   427  			switch v := v.(*ListMyOrganizationsResponse); i {
   428  			case 0:
   429  				return &v.state
   430  			case 1:
   431  				return &v.sizeCache
   432  			case 2:
   433  				return &v.unknownFields
   434  			default:
   435  				return nil
   436  			}
   437  		}
   438  	}
   439  
   440  	type x struct{}
   441  	out := protoimpl.TypeBuilder{
   442  		File: protoimpl.DescBuilder{
   443  			GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
   444  			RawDescriptor: edgelq_iam_proto_v1alpha2_organization_custom_proto_rawDesc,
   445  			NumEnums:      0,
   446  			NumMessages:   2,
   447  			NumExtensions: 0,
   448  			NumServices:   0,
   449  		},
   450  		GoTypes:           edgelq_iam_proto_v1alpha2_organization_custom_proto_goTypes,
   451  		DependencyIndexes: edgelq_iam_proto_v1alpha2_organization_custom_proto_depIdxs,
   452  		MessageInfos:      edgelq_iam_proto_v1alpha2_organization_custom_proto_msgTypes,
   453  	}.Build()
   454  	edgelq_iam_proto_v1alpha2_organization_custom_proto = out.File
   455  	edgelq_iam_proto_v1alpha2_organization_custom_proto_rawDesc = nil
   456  	edgelq_iam_proto_v1alpha2_organization_custom_proto_goTypes = nil
   457  	edgelq_iam_proto_v1alpha2_organization_custom_proto_depIdxs = nil
   458  }