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/asset/v1/asset_service.proto 18 19 package com.google.cloud.asset.v1; 20 21 public interface DeleteFeedRequestOrBuilder 22 extends 23 // @@protoc_insertion_point(interface_extends:google.cloud.asset.v1.DeleteFeedRequest) 24 com.google.protobuf.MessageOrBuilder { 25 26 /** 27 * 28 * 29 * <pre> 30 * Required. The name of the feed and it must be in the format of: 31 * projects/project_number/feeds/feed_id 32 * folders/folder_number/feeds/feed_id 33 * organizations/organization_number/feeds/feed_id 34 * </pre> 35 * 36 * <code> 37 * string name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } 38 * </code> 39 * 40 * @return The name. 41 */ getName()42 java.lang.String getName(); 43 /** 44 * 45 * 46 * <pre> 47 * Required. The name of the feed and it must be in the format of: 48 * projects/project_number/feeds/feed_id 49 * folders/folder_number/feeds/feed_id 50 * organizations/organization_number/feeds/feed_id 51 * </pre> 52 * 53 * <code> 54 * string name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } 55 * </code> 56 * 57 * @return The bytes for name. 58 */ getNameBytes()59 com.google.protobuf.ByteString getNameBytes(); 60 } 61