• 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/billing/v1/cloud_catalog.proto
18 
19 package com.google.cloud.billing.v1;
20 
21 public interface ServiceOrBuilder
22     extends
23     // @@protoc_insertion_point(interface_extends:google.cloud.billing.v1.Service)
24     com.google.protobuf.MessageOrBuilder {
25 
26   /**
27    *
28    *
29    * <pre>
30    * The resource name for the service.
31    * Example: "services/DA34-426B-A397"
32    * </pre>
33    *
34    * <code>string name = 1;</code>
35    *
36    * @return The name.
37    */
getName()38   java.lang.String getName();
39   /**
40    *
41    *
42    * <pre>
43    * The resource name for the service.
44    * Example: "services/DA34-426B-A397"
45    * </pre>
46    *
47    * <code>string name = 1;</code>
48    *
49    * @return The bytes for name.
50    */
getNameBytes()51   com.google.protobuf.ByteString getNameBytes();
52 
53   /**
54    *
55    *
56    * <pre>
57    * The identifier for the service.
58    * Example: "DA34-426B-A397"
59    * </pre>
60    *
61    * <code>string service_id = 2;</code>
62    *
63    * @return The serviceId.
64    */
getServiceId()65   java.lang.String getServiceId();
66   /**
67    *
68    *
69    * <pre>
70    * The identifier for the service.
71    * Example: "DA34-426B-A397"
72    * </pre>
73    *
74    * <code>string service_id = 2;</code>
75    *
76    * @return The bytes for serviceId.
77    */
getServiceIdBytes()78   com.google.protobuf.ByteString getServiceIdBytes();
79 
80   /**
81    *
82    *
83    * <pre>
84    * A human readable display name for this service.
85    * </pre>
86    *
87    * <code>string display_name = 3;</code>
88    *
89    * @return The displayName.
90    */
getDisplayName()91   java.lang.String getDisplayName();
92   /**
93    *
94    *
95    * <pre>
96    * A human readable display name for this service.
97    * </pre>
98    *
99    * <code>string display_name = 3;</code>
100    *
101    * @return The bytes for displayName.
102    */
getDisplayNameBytes()103   com.google.protobuf.ByteString getDisplayNameBytes();
104 
105   /**
106    *
107    *
108    * <pre>
109    * The business under which the service is offered.
110    * Ex. "businessEntities/GCP", "businessEntities/Maps"
111    * </pre>
112    *
113    * <code>string business_entity_name = 4;</code>
114    *
115    * @return The businessEntityName.
116    */
getBusinessEntityName()117   java.lang.String getBusinessEntityName();
118   /**
119    *
120    *
121    * <pre>
122    * The business under which the service is offered.
123    * Ex. "businessEntities/GCP", "businessEntities/Maps"
124    * </pre>
125    *
126    * <code>string business_entity_name = 4;</code>
127    *
128    * @return The bytes for businessEntityName.
129    */
getBusinessEntityNameBytes()130   com.google.protobuf.ByteString getBusinessEntityNameBytes();
131 }
132