• 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/vmmigration/v1/vmmigration.proto
18 
19 package com.google.cloud.vmmigration.v1;
20 
21 public interface ApplianceVersionOrBuilder
22     extends
23     // @@protoc_insertion_point(interface_extends:google.cloud.vmmigration.v1.ApplianceVersion)
24     com.google.protobuf.MessageOrBuilder {
25 
26   /**
27    *
28    *
29    * <pre>
30    * The appliance version.
31    * </pre>
32    *
33    * <code>string version = 1;</code>
34    *
35    * @return The version.
36    */
getVersion()37   java.lang.String getVersion();
38   /**
39    *
40    *
41    * <pre>
42    * The appliance version.
43    * </pre>
44    *
45    * <code>string version = 1;</code>
46    *
47    * @return The bytes for version.
48    */
getVersionBytes()49   com.google.protobuf.ByteString getVersionBytes();
50 
51   /**
52    *
53    *
54    * <pre>
55    * A link for downloading the version.
56    * </pre>
57    *
58    * <code>string uri = 2;</code>
59    *
60    * @return The uri.
61    */
getUri()62   java.lang.String getUri();
63   /**
64    *
65    *
66    * <pre>
67    * A link for downloading the version.
68    * </pre>
69    *
70    * <code>string uri = 2;</code>
71    *
72    * @return The bytes for uri.
73    */
getUriBytes()74   com.google.protobuf.ByteString getUriBytes();
75 
76   /**
77    *
78    *
79    * <pre>
80    * Determine whether it's critical to upgrade the appliance to this version.
81    * </pre>
82    *
83    * <code>bool critical = 3;</code>
84    *
85    * @return The critical.
86    */
getCritical()87   boolean getCritical();
88 
89   /**
90    *
91    *
92    * <pre>
93    * Link to a page that contains the version release notes.
94    * </pre>
95    *
96    * <code>string release_notes_uri = 4;</code>
97    *
98    * @return The releaseNotesUri.
99    */
getReleaseNotesUri()100   java.lang.String getReleaseNotesUri();
101   /**
102    *
103    *
104    * <pre>
105    * Link to a page that contains the version release notes.
106    * </pre>
107    *
108    * <code>string release_notes_uri = 4;</code>
109    *
110    * @return The bytes for releaseNotesUri.
111    */
getReleaseNotesUriBytes()112   com.google.protobuf.ByteString getReleaseNotesUriBytes();
113 }
114