1 /* 2 * Copyright 2020 Google LLC 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * https://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 // Generated by the protocol buffer compiler. DO NOT EDIT! 17 // source: google/cloud/talent/v4/tenant.proto 18 19 package com.google.cloud.talent.v4; 20 21 public interface TenantOrBuilder 22 extends 23 // @@protoc_insertion_point(interface_extends:google.cloud.talent.v4.Tenant) 24 com.google.protobuf.MessageOrBuilder { 25 26 /** 27 * 28 * 29 * <pre> 30 * Required during tenant update. 31 * The resource name for a tenant. This is generated by the service when a 32 * tenant is created. 33 * The format is "projects/{project_id}/tenants/{tenant_id}", for example, 34 * "projects/foo/tenants/bar". 35 * </pre> 36 * 37 * <code>string name = 1;</code> 38 * 39 * @return The name. 40 */ getName()41 java.lang.String getName(); 42 /** 43 * 44 * 45 * <pre> 46 * Required during tenant update. 47 * The resource name for a tenant. This is generated by the service when a 48 * tenant is created. 49 * The format is "projects/{project_id}/tenants/{tenant_id}", for example, 50 * "projects/foo/tenants/bar". 51 * </pre> 52 * 53 * <code>string name = 1;</code> 54 * 55 * @return The bytes for name. 56 */ getNameBytes()57 com.google.protobuf.ByteString getNameBytes(); 58 59 /** 60 * 61 * 62 * <pre> 63 * Required. Client side tenant identifier, used to uniquely identify the 64 * tenant. 65 * The maximum number of allowed characters is 255. 66 * </pre> 67 * 68 * <code>string external_id = 2 [(.google.api.field_behavior) = REQUIRED];</code> 69 * 70 * @return The externalId. 71 */ getExternalId()72 java.lang.String getExternalId(); 73 /** 74 * 75 * 76 * <pre> 77 * Required. Client side tenant identifier, used to uniquely identify the 78 * tenant. 79 * The maximum number of allowed characters is 255. 80 * </pre> 81 * 82 * <code>string external_id = 2 [(.google.api.field_behavior) = REQUIRED];</code> 83 * 84 * @return The bytes for externalId. 85 */ getExternalIdBytes()86 com.google.protobuf.ByteString getExternalIdBytes(); 87 } 88