...

Source file src/google.golang.org/genproto/googleapis/cloud/contentwarehouse/v1/synonymset_service_request.pb.go

Documentation: google.golang.org/genproto/googleapis/cloud/contentwarehouse/v1

     1  // Copyright 2022 Google LLC
     2  //
     3  // Licensed under the Apache License, Version 2.0 (the "License");
     4  // you may not use this file except in compliance with the License.
     5  // You may obtain a copy of the License at
     6  //
     7  //     http://www.apache.org/licenses/LICENSE-2.0
     8  //
     9  // Unless required by applicable law or agreed to in writing, software
    10  // distributed under the License is distributed on an "AS IS" BASIS,
    11  // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    12  // See the License for the specific language governing permissions and
    13  // limitations under the License.
    14  
    15  // Code generated by protoc-gen-go. DO NOT EDIT.
    16  // versions:
    17  // 	protoc-gen-go v1.26.0
    18  // 	protoc        v3.12.2
    19  // source: google/cloud/contentwarehouse/v1/synonymset_service_request.proto
    20  
    21  package contentwarehouse
    22  
    23  import (
    24  	reflect "reflect"
    25  	sync "sync"
    26  
    27  	_ "google.golang.org/genproto/googleapis/api/annotations"
    28  	protoreflect "google.golang.org/protobuf/reflect/protoreflect"
    29  	protoimpl "google.golang.org/protobuf/runtime/protoimpl"
    30  )
    31  
    32  const (
    33  	// Verify that this generated code is sufficiently up-to-date.
    34  	_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
    35  	// Verify that runtime/protoimpl is sufficiently up-to-date.
    36  	_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
    37  )
    38  
    39  // Request message for SynonymSetService.CreateSynonymSet.
    40  type CreateSynonymSetRequest struct {
    41  	state         protoimpl.MessageState
    42  	sizeCache     protoimpl.SizeCache
    43  	unknownFields protoimpl.UnknownFields
    44  
    45  	// Required. The parent name.
    46  	// Format: projects/{project_number}/locations/{location}.
    47  	Parent string `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"`
    48  	// Required. The synonymSet to be created for a context
    49  	SynonymSet *SynonymSet `protobuf:"bytes,2,opt,name=synonym_set,json=synonymSet,proto3" json:"synonym_set,omitempty"`
    50  }
    51  
    52  func (x *CreateSynonymSetRequest) Reset() {
    53  	*x = CreateSynonymSetRequest{}
    54  	if protoimpl.UnsafeEnabled {
    55  		mi := &file_google_cloud_contentwarehouse_v1_synonymset_service_request_proto_msgTypes[0]
    56  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
    57  		ms.StoreMessageInfo(mi)
    58  	}
    59  }
    60  
    61  func (x *CreateSynonymSetRequest) String() string {
    62  	return protoimpl.X.MessageStringOf(x)
    63  }
    64  
    65  func (*CreateSynonymSetRequest) ProtoMessage() {}
    66  
    67  func (x *CreateSynonymSetRequest) ProtoReflect() protoreflect.Message {
    68  	mi := &file_google_cloud_contentwarehouse_v1_synonymset_service_request_proto_msgTypes[0]
    69  	if protoimpl.UnsafeEnabled && x != nil {
    70  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
    71  		if ms.LoadMessageInfo() == nil {
    72  			ms.StoreMessageInfo(mi)
    73  		}
    74  		return ms
    75  	}
    76  	return mi.MessageOf(x)
    77  }
    78  
    79  // Deprecated: Use CreateSynonymSetRequest.ProtoReflect.Descriptor instead.
    80  func (*CreateSynonymSetRequest) Descriptor() ([]byte, []int) {
    81  	return file_google_cloud_contentwarehouse_v1_synonymset_service_request_proto_rawDescGZIP(), []int{0}
    82  }
    83  
    84  func (x *CreateSynonymSetRequest) GetParent() string {
    85  	if x != nil {
    86  		return x.Parent
    87  	}
    88  	return ""
    89  }
    90  
    91  func (x *CreateSynonymSetRequest) GetSynonymSet() *SynonymSet {
    92  	if x != nil {
    93  		return x.SynonymSet
    94  	}
    95  	return nil
    96  }
    97  
    98  // Request message for SynonymSetService.GetSynonymSet.
    99  // Will return synonymSet for a certain context.
   100  type GetSynonymSetRequest struct {
   101  	state         protoimpl.MessageState
   102  	sizeCache     protoimpl.SizeCache
   103  	unknownFields protoimpl.UnknownFields
   104  
   105  	// Required. The name of the synonymSet to retrieve
   106  	// Format:
   107  	// projects/{project_number}/locations/{location}/synonymSets/{context}.
   108  	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
   109  }
   110  
   111  func (x *GetSynonymSetRequest) Reset() {
   112  	*x = GetSynonymSetRequest{}
   113  	if protoimpl.UnsafeEnabled {
   114  		mi := &file_google_cloud_contentwarehouse_v1_synonymset_service_request_proto_msgTypes[1]
   115  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
   116  		ms.StoreMessageInfo(mi)
   117  	}
   118  }
   119  
   120  func (x *GetSynonymSetRequest) String() string {
   121  	return protoimpl.X.MessageStringOf(x)
   122  }
   123  
   124  func (*GetSynonymSetRequest) ProtoMessage() {}
   125  
   126  func (x *GetSynonymSetRequest) ProtoReflect() protoreflect.Message {
   127  	mi := &file_google_cloud_contentwarehouse_v1_synonymset_service_request_proto_msgTypes[1]
   128  	if protoimpl.UnsafeEnabled && x != nil {
   129  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
   130  		if ms.LoadMessageInfo() == nil {
   131  			ms.StoreMessageInfo(mi)
   132  		}
   133  		return ms
   134  	}
   135  	return mi.MessageOf(x)
   136  }
   137  
   138  // Deprecated: Use GetSynonymSetRequest.ProtoReflect.Descriptor instead.
   139  func (*GetSynonymSetRequest) Descriptor() ([]byte, []int) {
   140  	return file_google_cloud_contentwarehouse_v1_synonymset_service_request_proto_rawDescGZIP(), []int{1}
   141  }
   142  
   143  func (x *GetSynonymSetRequest) GetName() string {
   144  	if x != nil {
   145  		return x.Name
   146  	}
   147  	return ""
   148  }
   149  
   150  // Request message for SynonymSetService.ListSynonymSets.
   151  // Will return all synonymSets belonging to the customer project.
   152  type ListSynonymSetsRequest struct {
   153  	state         protoimpl.MessageState
   154  	sizeCache     protoimpl.SizeCache
   155  	unknownFields protoimpl.UnknownFields
   156  
   157  	// Required. The parent name.
   158  	// Format: projects/{project_number}/locations/{location}.
   159  	Parent string `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"`
   160  	// The maximum number of synonymSets to return. The service may return
   161  	// fewer than this value.
   162  	// If unspecified, at most 50 rule sets will be returned.
   163  	// The maximum value is 1000; values above 1000 will be coerced to 1000.
   164  	PageSize int32 `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"`
   165  	// A page token, received from a previous `ListSynonymSets` call.
   166  	// Provide this to retrieve the subsequent page.
   167  	//
   168  	// When paginating, all other parameters provided to `ListSynonymSets`
   169  	// must match the call that provided the page token.
   170  	PageToken string `protobuf:"bytes,3,opt,name=page_token,json=pageToken,proto3" json:"page_token,omitempty"`
   171  }
   172  
   173  func (x *ListSynonymSetsRequest) Reset() {
   174  	*x = ListSynonymSetsRequest{}
   175  	if protoimpl.UnsafeEnabled {
   176  		mi := &file_google_cloud_contentwarehouse_v1_synonymset_service_request_proto_msgTypes[2]
   177  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
   178  		ms.StoreMessageInfo(mi)
   179  	}
   180  }
   181  
   182  func (x *ListSynonymSetsRequest) String() string {
   183  	return protoimpl.X.MessageStringOf(x)
   184  }
   185  
   186  func (*ListSynonymSetsRequest) ProtoMessage() {}
   187  
   188  func (x *ListSynonymSetsRequest) ProtoReflect() protoreflect.Message {
   189  	mi := &file_google_cloud_contentwarehouse_v1_synonymset_service_request_proto_msgTypes[2]
   190  	if protoimpl.UnsafeEnabled && x != nil {
   191  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
   192  		if ms.LoadMessageInfo() == nil {
   193  			ms.StoreMessageInfo(mi)
   194  		}
   195  		return ms
   196  	}
   197  	return mi.MessageOf(x)
   198  }
   199  
   200  // Deprecated: Use ListSynonymSetsRequest.ProtoReflect.Descriptor instead.
   201  func (*ListSynonymSetsRequest) Descriptor() ([]byte, []int) {
   202  	return file_google_cloud_contentwarehouse_v1_synonymset_service_request_proto_rawDescGZIP(), []int{2}
   203  }
   204  
   205  func (x *ListSynonymSetsRequest) GetParent() string {
   206  	if x != nil {
   207  		return x.Parent
   208  	}
   209  	return ""
   210  }
   211  
   212  func (x *ListSynonymSetsRequest) GetPageSize() int32 {
   213  	if x != nil {
   214  		return x.PageSize
   215  	}
   216  	return 0
   217  }
   218  
   219  func (x *ListSynonymSetsRequest) GetPageToken() string {
   220  	if x != nil {
   221  		return x.PageToken
   222  	}
   223  	return ""
   224  }
   225  
   226  // Response message for SynonymSetService.ListSynonymSets.
   227  type ListSynonymSetsResponse struct {
   228  	state         protoimpl.MessageState
   229  	sizeCache     protoimpl.SizeCache
   230  	unknownFields protoimpl.UnknownFields
   231  
   232  	// The synonymSets from the specified parent.
   233  	SynonymSets []*SynonymSet `protobuf:"bytes,1,rep,name=synonym_sets,json=synonymSets,proto3" json:"synonym_sets,omitempty"`
   234  	// A page token, received from a previous `ListSynonymSets` call.
   235  	// Provide this to retrieve the subsequent page.
   236  	NextPageToken string `protobuf:"bytes,2,opt,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"`
   237  }
   238  
   239  func (x *ListSynonymSetsResponse) Reset() {
   240  	*x = ListSynonymSetsResponse{}
   241  	if protoimpl.UnsafeEnabled {
   242  		mi := &file_google_cloud_contentwarehouse_v1_synonymset_service_request_proto_msgTypes[3]
   243  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
   244  		ms.StoreMessageInfo(mi)
   245  	}
   246  }
   247  
   248  func (x *ListSynonymSetsResponse) String() string {
   249  	return protoimpl.X.MessageStringOf(x)
   250  }
   251  
   252  func (*ListSynonymSetsResponse) ProtoMessage() {}
   253  
   254  func (x *ListSynonymSetsResponse) ProtoReflect() protoreflect.Message {
   255  	mi := &file_google_cloud_contentwarehouse_v1_synonymset_service_request_proto_msgTypes[3]
   256  	if protoimpl.UnsafeEnabled && x != nil {
   257  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
   258  		if ms.LoadMessageInfo() == nil {
   259  			ms.StoreMessageInfo(mi)
   260  		}
   261  		return ms
   262  	}
   263  	return mi.MessageOf(x)
   264  }
   265  
   266  // Deprecated: Use ListSynonymSetsResponse.ProtoReflect.Descriptor instead.
   267  func (*ListSynonymSetsResponse) Descriptor() ([]byte, []int) {
   268  	return file_google_cloud_contentwarehouse_v1_synonymset_service_request_proto_rawDescGZIP(), []int{3}
   269  }
   270  
   271  func (x *ListSynonymSetsResponse) GetSynonymSets() []*SynonymSet {
   272  	if x != nil {
   273  		return x.SynonymSets
   274  	}
   275  	return nil
   276  }
   277  
   278  func (x *ListSynonymSetsResponse) GetNextPageToken() string {
   279  	if x != nil {
   280  		return x.NextPageToken
   281  	}
   282  	return ""
   283  }
   284  
   285  // Request message for SynonymSetService.UpdateSynonymSet.
   286  // Removes the SynonymSet for the specified context and replaces
   287  // it with the SynonymSet in this request.
   288  type UpdateSynonymSetRequest struct {
   289  	state         protoimpl.MessageState
   290  	sizeCache     protoimpl.SizeCache
   291  	unknownFields protoimpl.UnknownFields
   292  
   293  	// Required. The name of the synonymSet to update
   294  	// Format:
   295  	// projects/{project_number}/locations/{location}/synonymSets/{context}.
   296  	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
   297  	// Required. The synonymSet to be updated for the customer
   298  	SynonymSet *SynonymSet `protobuf:"bytes,2,opt,name=synonym_set,json=synonymSet,proto3" json:"synonym_set,omitempty"`
   299  }
   300  
   301  func (x *UpdateSynonymSetRequest) Reset() {
   302  	*x = UpdateSynonymSetRequest{}
   303  	if protoimpl.UnsafeEnabled {
   304  		mi := &file_google_cloud_contentwarehouse_v1_synonymset_service_request_proto_msgTypes[4]
   305  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
   306  		ms.StoreMessageInfo(mi)
   307  	}
   308  }
   309  
   310  func (x *UpdateSynonymSetRequest) String() string {
   311  	return protoimpl.X.MessageStringOf(x)
   312  }
   313  
   314  func (*UpdateSynonymSetRequest) ProtoMessage() {}
   315  
   316  func (x *UpdateSynonymSetRequest) ProtoReflect() protoreflect.Message {
   317  	mi := &file_google_cloud_contentwarehouse_v1_synonymset_service_request_proto_msgTypes[4]
   318  	if protoimpl.UnsafeEnabled && x != nil {
   319  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
   320  		if ms.LoadMessageInfo() == nil {
   321  			ms.StoreMessageInfo(mi)
   322  		}
   323  		return ms
   324  	}
   325  	return mi.MessageOf(x)
   326  }
   327  
   328  // Deprecated: Use UpdateSynonymSetRequest.ProtoReflect.Descriptor instead.
   329  func (*UpdateSynonymSetRequest) Descriptor() ([]byte, []int) {
   330  	return file_google_cloud_contentwarehouse_v1_synonymset_service_request_proto_rawDescGZIP(), []int{4}
   331  }
   332  
   333  func (x *UpdateSynonymSetRequest) GetName() string {
   334  	if x != nil {
   335  		return x.Name
   336  	}
   337  	return ""
   338  }
   339  
   340  func (x *UpdateSynonymSetRequest) GetSynonymSet() *SynonymSet {
   341  	if x != nil {
   342  		return x.SynonymSet
   343  	}
   344  	return nil
   345  }
   346  
   347  // Request message for SynonymSetService.DeleteSynonymSet.
   348  type DeleteSynonymSetRequest struct {
   349  	state         protoimpl.MessageState
   350  	sizeCache     protoimpl.SizeCache
   351  	unknownFields protoimpl.UnknownFields
   352  
   353  	// Required. The name of the synonymSet to delete
   354  	// Format:
   355  	// projects/{project_number}/locations/{location}/synonymSets/{context}.
   356  	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
   357  }
   358  
   359  func (x *DeleteSynonymSetRequest) Reset() {
   360  	*x = DeleteSynonymSetRequest{}
   361  	if protoimpl.UnsafeEnabled {
   362  		mi := &file_google_cloud_contentwarehouse_v1_synonymset_service_request_proto_msgTypes[5]
   363  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
   364  		ms.StoreMessageInfo(mi)
   365  	}
   366  }
   367  
   368  func (x *DeleteSynonymSetRequest) String() string {
   369  	return protoimpl.X.MessageStringOf(x)
   370  }
   371  
   372  func (*DeleteSynonymSetRequest) ProtoMessage() {}
   373  
   374  func (x *DeleteSynonymSetRequest) ProtoReflect() protoreflect.Message {
   375  	mi := &file_google_cloud_contentwarehouse_v1_synonymset_service_request_proto_msgTypes[5]
   376  	if protoimpl.UnsafeEnabled && x != nil {
   377  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
   378  		if ms.LoadMessageInfo() == nil {
   379  			ms.StoreMessageInfo(mi)
   380  		}
   381  		return ms
   382  	}
   383  	return mi.MessageOf(x)
   384  }
   385  
   386  // Deprecated: Use DeleteSynonymSetRequest.ProtoReflect.Descriptor instead.
   387  func (*DeleteSynonymSetRequest) Descriptor() ([]byte, []int) {
   388  	return file_google_cloud_contentwarehouse_v1_synonymset_service_request_proto_rawDescGZIP(), []int{5}
   389  }
   390  
   391  func (x *DeleteSynonymSetRequest) GetName() string {
   392  	if x != nil {
   393  		return x.Name
   394  	}
   395  	return ""
   396  }
   397  
   398  var File_google_cloud_contentwarehouse_v1_synonymset_service_request_proto protoreflect.FileDescriptor
   399  
   400  var file_google_cloud_contentwarehouse_v1_synonymset_service_request_proto_rawDesc = []byte{
   401  	0x0a, 0x41, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x2f, 0x63,
   402  	0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x77, 0x61, 0x72, 0x65, 0x68, 0x6f, 0x75, 0x73, 0x65, 0x2f,
   403  	0x76, 0x31, 0x2f, 0x73, 0x79, 0x6e, 0x6f, 0x6e, 0x79, 0x6d, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65,
   404  	0x72, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x70, 0x72,
   405  	0x6f, 0x74, 0x6f, 0x12, 0x20, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x63, 0x6c, 0x6f, 0x75,
   406  	0x64, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x77, 0x61, 0x72, 0x65, 0x68, 0x6f, 0x75,
   407  	0x73, 0x65, 0x2e, 0x76, 0x31, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70,
   408  	0x69, 0x2f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x62, 0x65, 0x68, 0x61, 0x76, 0x69, 0x6f, 0x72,
   409  	0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x19, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61,
   410  	0x70, 0x69, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
   411  	0x6f, 0x1a, 0x31, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x2f,
   412  	0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x77, 0x61, 0x72, 0x65, 0x68, 0x6f, 0x75, 0x73, 0x65,
   413  	0x2f, 0x76, 0x31, 0x2f, 0x73, 0x79, 0x6e, 0x6f, 0x6e, 0x79, 0x6d, 0x73, 0x65, 0x74, 0x2e, 0x70,
   414  	0x72, 0x6f, 0x74, 0x6f, 0x22, 0xb7, 0x01, 0x0a, 0x17, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53,
   415  	0x79, 0x6e, 0x6f, 0x6e, 0x79, 0x6d, 0x53, 0x65, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
   416  	0x12, 0x48, 0x0a, 0x06, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
   417  	0x42, 0x30, 0xe0, 0x41, 0x02, 0xfa, 0x41, 0x2a, 0x0a, 0x28, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e,
   418  	0x74, 0x77, 0x61, 0x72, 0x65, 0x68, 0x6f, 0x75, 0x73, 0x65, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
   419  	0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69,
   420  	0x6f, 0x6e, 0x52, 0x06, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x12, 0x52, 0x0a, 0x0b, 0x73, 0x79,
   421  	0x6e, 0x6f, 0x6e, 0x79, 0x6d, 0x5f, 0x73, 0x65, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32,
   422  	0x2c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x2e, 0x63,
   423  	0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x77, 0x61, 0x72, 0x65, 0x68, 0x6f, 0x75, 0x73, 0x65, 0x2e,
   424  	0x76, 0x31, 0x2e, 0x53, 0x79, 0x6e, 0x6f, 0x6e, 0x79, 0x6d, 0x53, 0x65, 0x74, 0x42, 0x03, 0xe0,
   425  	0x41, 0x02, 0x52, 0x0a, 0x73, 0x79, 0x6e, 0x6f, 0x6e, 0x79, 0x6d, 0x53, 0x65, 0x74, 0x22, 0x5e,
   426  	0x0a, 0x14, 0x47, 0x65, 0x74, 0x53, 0x79, 0x6e, 0x6f, 0x6e, 0x79, 0x6d, 0x53, 0x65, 0x74, 0x52,
   427  	0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x46, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01,
   428  	0x20, 0x01, 0x28, 0x09, 0x42, 0x32, 0xe0, 0x41, 0x02, 0xfa, 0x41, 0x2c, 0x0a, 0x2a, 0x63, 0x6f,
   429  	0x6e, 0x74, 0x65, 0x6e, 0x74, 0x77, 0x61, 0x72, 0x65, 0x68, 0x6f, 0x75, 0x73, 0x65, 0x2e, 0x67,
   430  	0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x53, 0x79,
   431  	0x6e, 0x6f, 0x6e, 0x79, 0x6d, 0x53, 0x65, 0x74, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x9e,
   432  	0x01, 0x0a, 0x16, 0x4c, 0x69, 0x73, 0x74, 0x53, 0x79, 0x6e, 0x6f, 0x6e, 0x79, 0x6d, 0x53, 0x65,
   433  	0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x48, 0x0a, 0x06, 0x70, 0x61, 0x72,
   434  	0x65, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x30, 0xe0, 0x41, 0x02, 0xfa, 0x41,
   435  	0x2a, 0x0a, 0x28, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x77, 0x61, 0x72, 0x65, 0x68, 0x6f,
   436  	0x75, 0x73, 0x65, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63,
   437  	0x6f, 0x6d, 0x2f, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x06, 0x70, 0x61, 0x72,
   438  	0x65, 0x6e, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65,
   439  	0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65,
   440  	0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x03,
   441  	0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x61, 0x67, 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x22,
   442  	0x92, 0x01, 0x0a, 0x17, 0x4c, 0x69, 0x73, 0x74, 0x53, 0x79, 0x6e, 0x6f, 0x6e, 0x79, 0x6d, 0x53,
   443  	0x65, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x4f, 0x0a, 0x0c, 0x73,
   444  	0x79, 0x6e, 0x6f, 0x6e, 0x79, 0x6d, 0x5f, 0x73, 0x65, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28,
   445  	0x0b, 0x32, 0x2c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x63, 0x6c, 0x6f, 0x75, 0x64,
   446  	0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x77, 0x61, 0x72, 0x65, 0x68, 0x6f, 0x75, 0x73,
   447  	0x65, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x79, 0x6e, 0x6f, 0x6e, 0x79, 0x6d, 0x53, 0x65, 0x74, 0x52,
   448  	0x0b, 0x73, 0x79, 0x6e, 0x6f, 0x6e, 0x79, 0x6d, 0x53, 0x65, 0x74, 0x73, 0x12, 0x26, 0x0a, 0x0f,
   449  	0x6e, 0x65, 0x78, 0x74, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18,
   450  	0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x6e, 0x65, 0x78, 0x74, 0x50, 0x61, 0x67, 0x65, 0x54,
   451  	0x6f, 0x6b, 0x65, 0x6e, 0x22, 0xb5, 0x01, 0x0a, 0x17, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53,
   452  	0x79, 0x6e, 0x6f, 0x6e, 0x79, 0x6d, 0x53, 0x65, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
   453  	0x12, 0x46, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x32,
   454  	0xe0, 0x41, 0x02, 0xfa, 0x41, 0x2c, 0x0a, 0x2a, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x77,
   455  	0x61, 0x72, 0x65, 0x68, 0x6f, 0x75, 0x73, 0x65, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
   456  	0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x53, 0x79, 0x6e, 0x6f, 0x6e, 0x79, 0x6d, 0x53,
   457  	0x65, 0x74, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x52, 0x0a, 0x0b, 0x73, 0x79, 0x6e, 0x6f,
   458  	0x6e, 0x79, 0x6d, 0x5f, 0x73, 0x65, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2c, 0x2e,
   459  	0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x2e, 0x63, 0x6f, 0x6e,
   460  	0x74, 0x65, 0x6e, 0x74, 0x77, 0x61, 0x72, 0x65, 0x68, 0x6f, 0x75, 0x73, 0x65, 0x2e, 0x76, 0x31,
   461  	0x2e, 0x53, 0x79, 0x6e, 0x6f, 0x6e, 0x79, 0x6d, 0x53, 0x65, 0x74, 0x42, 0x03, 0xe0, 0x41, 0x02,
   462  	0x52, 0x0a, 0x73, 0x79, 0x6e, 0x6f, 0x6e, 0x79, 0x6d, 0x53, 0x65, 0x74, 0x22, 0x61, 0x0a, 0x17,
   463  	0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x53, 0x79, 0x6e, 0x6f, 0x6e, 0x79, 0x6d, 0x53, 0x65, 0x74,
   464  	0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x46, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18,
   465  	0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x32, 0xe0, 0x41, 0x02, 0xfa, 0x41, 0x2c, 0x0a, 0x2a, 0x63,
   466  	0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x77, 0x61, 0x72, 0x65, 0x68, 0x6f, 0x75, 0x73, 0x65, 0x2e,
   467  	0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x53,
   468  	0x79, 0x6e, 0x6f, 0x6e, 0x79, 0x6d, 0x53, 0x65, 0x74, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x42,
   469  	0x99, 0x01, 0x0a, 0x24, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x63,
   470  	0x6c, 0x6f, 0x75, 0x64, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x77, 0x61, 0x72, 0x65,
   471  	0x68, 0x6f, 0x75, 0x73, 0x65, 0x2e, 0x76, 0x31, 0x42, 0x1d, 0x53, 0x79, 0x6e, 0x6f, 0x6e, 0x79,
   472  	0x6d, 0x53, 0x65, 0x74, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65,
   473  	0x73, 0x74, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x50, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
   474  	0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e,
   475  	0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73,
   476  	0x2f, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x2f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x77, 0x61,
   477  	0x72, 0x65, 0x68, 0x6f, 0x75, 0x73, 0x65, 0x2f, 0x76, 0x31, 0x3b, 0x63, 0x6f, 0x6e, 0x74, 0x65,
   478  	0x6e, 0x74, 0x77, 0x61, 0x72, 0x65, 0x68, 0x6f, 0x75, 0x73, 0x65, 0x62, 0x06, 0x70, 0x72, 0x6f,
   479  	0x74, 0x6f, 0x33,
   480  }
   481  
   482  var (
   483  	file_google_cloud_contentwarehouse_v1_synonymset_service_request_proto_rawDescOnce sync.Once
   484  	file_google_cloud_contentwarehouse_v1_synonymset_service_request_proto_rawDescData = file_google_cloud_contentwarehouse_v1_synonymset_service_request_proto_rawDesc
   485  )
   486  
   487  func file_google_cloud_contentwarehouse_v1_synonymset_service_request_proto_rawDescGZIP() []byte {
   488  	file_google_cloud_contentwarehouse_v1_synonymset_service_request_proto_rawDescOnce.Do(func() {
   489  		file_google_cloud_contentwarehouse_v1_synonymset_service_request_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_cloud_contentwarehouse_v1_synonymset_service_request_proto_rawDescData)
   490  	})
   491  	return file_google_cloud_contentwarehouse_v1_synonymset_service_request_proto_rawDescData
   492  }
   493  
   494  var file_google_cloud_contentwarehouse_v1_synonymset_service_request_proto_msgTypes = make([]protoimpl.MessageInfo, 6)
   495  var file_google_cloud_contentwarehouse_v1_synonymset_service_request_proto_goTypes = []interface{}{
   496  	(*CreateSynonymSetRequest)(nil), // 0: google.cloud.contentwarehouse.v1.CreateSynonymSetRequest
   497  	(*GetSynonymSetRequest)(nil),    // 1: google.cloud.contentwarehouse.v1.GetSynonymSetRequest
   498  	(*ListSynonymSetsRequest)(nil),  // 2: google.cloud.contentwarehouse.v1.ListSynonymSetsRequest
   499  	(*ListSynonymSetsResponse)(nil), // 3: google.cloud.contentwarehouse.v1.ListSynonymSetsResponse
   500  	(*UpdateSynonymSetRequest)(nil), // 4: google.cloud.contentwarehouse.v1.UpdateSynonymSetRequest
   501  	(*DeleteSynonymSetRequest)(nil), // 5: google.cloud.contentwarehouse.v1.DeleteSynonymSetRequest
   502  	(*SynonymSet)(nil),              // 6: google.cloud.contentwarehouse.v1.SynonymSet
   503  }
   504  var file_google_cloud_contentwarehouse_v1_synonymset_service_request_proto_depIdxs = []int32{
   505  	6, // 0: google.cloud.contentwarehouse.v1.CreateSynonymSetRequest.synonym_set:type_name -> google.cloud.contentwarehouse.v1.SynonymSet
   506  	6, // 1: google.cloud.contentwarehouse.v1.ListSynonymSetsResponse.synonym_sets:type_name -> google.cloud.contentwarehouse.v1.SynonymSet
   507  	6, // 2: google.cloud.contentwarehouse.v1.UpdateSynonymSetRequest.synonym_set:type_name -> google.cloud.contentwarehouse.v1.SynonymSet
   508  	3, // [3:3] is the sub-list for method output_type
   509  	3, // [3:3] is the sub-list for method input_type
   510  	3, // [3:3] is the sub-list for extension type_name
   511  	3, // [3:3] is the sub-list for extension extendee
   512  	0, // [0:3] is the sub-list for field type_name
   513  }
   514  
   515  func init() { file_google_cloud_contentwarehouse_v1_synonymset_service_request_proto_init() }
   516  func file_google_cloud_contentwarehouse_v1_synonymset_service_request_proto_init() {
   517  	if File_google_cloud_contentwarehouse_v1_synonymset_service_request_proto != nil {
   518  		return
   519  	}
   520  	file_google_cloud_contentwarehouse_v1_synonymset_proto_init()
   521  	if !protoimpl.UnsafeEnabled {
   522  		file_google_cloud_contentwarehouse_v1_synonymset_service_request_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
   523  			switch v := v.(*CreateSynonymSetRequest); i {
   524  			case 0:
   525  				return &v.state
   526  			case 1:
   527  				return &v.sizeCache
   528  			case 2:
   529  				return &v.unknownFields
   530  			default:
   531  				return nil
   532  			}
   533  		}
   534  		file_google_cloud_contentwarehouse_v1_synonymset_service_request_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
   535  			switch v := v.(*GetSynonymSetRequest); i {
   536  			case 0:
   537  				return &v.state
   538  			case 1:
   539  				return &v.sizeCache
   540  			case 2:
   541  				return &v.unknownFields
   542  			default:
   543  				return nil
   544  			}
   545  		}
   546  		file_google_cloud_contentwarehouse_v1_synonymset_service_request_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
   547  			switch v := v.(*ListSynonymSetsRequest); i {
   548  			case 0:
   549  				return &v.state
   550  			case 1:
   551  				return &v.sizeCache
   552  			case 2:
   553  				return &v.unknownFields
   554  			default:
   555  				return nil
   556  			}
   557  		}
   558  		file_google_cloud_contentwarehouse_v1_synonymset_service_request_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
   559  			switch v := v.(*ListSynonymSetsResponse); i {
   560  			case 0:
   561  				return &v.state
   562  			case 1:
   563  				return &v.sizeCache
   564  			case 2:
   565  				return &v.unknownFields
   566  			default:
   567  				return nil
   568  			}
   569  		}
   570  		file_google_cloud_contentwarehouse_v1_synonymset_service_request_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
   571  			switch v := v.(*UpdateSynonymSetRequest); i {
   572  			case 0:
   573  				return &v.state
   574  			case 1:
   575  				return &v.sizeCache
   576  			case 2:
   577  				return &v.unknownFields
   578  			default:
   579  				return nil
   580  			}
   581  		}
   582  		file_google_cloud_contentwarehouse_v1_synonymset_service_request_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
   583  			switch v := v.(*DeleteSynonymSetRequest); i {
   584  			case 0:
   585  				return &v.state
   586  			case 1:
   587  				return &v.sizeCache
   588  			case 2:
   589  				return &v.unknownFields
   590  			default:
   591  				return nil
   592  			}
   593  		}
   594  	}
   595  	type x struct{}
   596  	out := protoimpl.TypeBuilder{
   597  		File: protoimpl.DescBuilder{
   598  			GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
   599  			RawDescriptor: file_google_cloud_contentwarehouse_v1_synonymset_service_request_proto_rawDesc,
   600  			NumEnums:      0,
   601  			NumMessages:   6,
   602  			NumExtensions: 0,
   603  			NumServices:   0,
   604  		},
   605  		GoTypes:           file_google_cloud_contentwarehouse_v1_synonymset_service_request_proto_goTypes,
   606  		DependencyIndexes: file_google_cloud_contentwarehouse_v1_synonymset_service_request_proto_depIdxs,
   607  		MessageInfos:      file_google_cloud_contentwarehouse_v1_synonymset_service_request_proto_msgTypes,
   608  	}.Build()
   609  	File_google_cloud_contentwarehouse_v1_synonymset_service_request_proto = out.File
   610  	file_google_cloud_contentwarehouse_v1_synonymset_service_request_proto_rawDesc = nil
   611  	file_google_cloud_contentwarehouse_v1_synonymset_service_request_proto_goTypes = nil
   612  	file_google_cloud_contentwarehouse_v1_synonymset_service_request_proto_depIdxs = nil
   613  }
   614  

View as plain text