• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 ListFeedsRequestOrBuilder
22     extends
23     // @@protoc_insertion_point(interface_extends:google.cloud.asset.v1.ListFeedsRequest)
24     com.google.protobuf.MessageOrBuilder {
25 
26   /**
27    *
28    *
29    * <pre>
30    * Required. The parent project/folder/organization whose feeds are to be
31    * listed. It can only be using project/folder/organization number (such as
32    * "folders/12345")", or a project ID (such as "projects/my-project-id").
33    * </pre>
34    *
35    * <code>string parent = 1 [(.google.api.field_behavior) = REQUIRED];</code>
36    *
37    * @return The parent.
38    */
getParent()39   java.lang.String getParent();
40   /**
41    *
42    *
43    * <pre>
44    * Required. The parent project/folder/organization whose feeds are to be
45    * listed. It can only be using project/folder/organization number (such as
46    * "folders/12345")", or a project ID (such as "projects/my-project-id").
47    * </pre>
48    *
49    * <code>string parent = 1 [(.google.api.field_behavior) = REQUIRED];</code>
50    *
51    * @return The bytes for parent.
52    */
getParentBytes()53   com.google.protobuf.ByteString getParentBytes();
54 }
55