• 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/appengine/v1/domain_mapping.proto
18 
19 package com.google.appengine.v1;
20 
21 public interface ResourceRecordOrBuilder
22     extends
23     // @@protoc_insertion_point(interface_extends:google.appengine.v1.ResourceRecord)
24     com.google.protobuf.MessageOrBuilder {
25 
26   /**
27    *
28    *
29    * <pre>
30    * Relative name of the object affected by this record. Only applicable for
31    * `CNAME` records. Example: 'www'.
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    * Relative name of the object affected by this record. Only applicable for
44    * `CNAME` records. Example: 'www'.
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    * Data for this record. Values vary by record type, as defined in RFC 1035
58    * (section 5) and RFC 1034 (section 3.6.1).
59    * </pre>
60    *
61    * <code>string rrdata = 2;</code>
62    *
63    * @return The rrdata.
64    */
getRrdata()65   java.lang.String getRrdata();
66   /**
67    *
68    *
69    * <pre>
70    * Data for this record. Values vary by record type, as defined in RFC 1035
71    * (section 5) and RFC 1034 (section 3.6.1).
72    * </pre>
73    *
74    * <code>string rrdata = 2;</code>
75    *
76    * @return The bytes for rrdata.
77    */
getRrdataBytes()78   com.google.protobuf.ByteString getRrdataBytes();
79 
80   /**
81    *
82    *
83    * <pre>
84    * Resource record type. Example: `AAAA`.
85    * </pre>
86    *
87    * <code>.google.appengine.v1.ResourceRecord.RecordType type = 3;</code>
88    *
89    * @return The enum numeric value on the wire for type.
90    */
getTypeValue()91   int getTypeValue();
92   /**
93    *
94    *
95    * <pre>
96    * Resource record type. Example: `AAAA`.
97    * </pre>
98    *
99    * <code>.google.appengine.v1.ResourceRecord.RecordType type = 3;</code>
100    *
101    * @return The type.
102    */
getType()103   com.google.appengine.v1.ResourceRecord.RecordType getType();
104 }
105