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 CycleStepOrBuilder 22 extends 23 // @@protoc_insertion_point(interface_extends:google.cloud.vmmigration.v1.CycleStep) 24 com.google.protobuf.MessageOrBuilder { 25 26 /** 27 * 28 * 29 * <pre> 30 * Initializing replication step. 31 * </pre> 32 * 33 * <code>.google.cloud.vmmigration.v1.InitializingReplicationStep initializing_replication = 3; 34 * </code> 35 * 36 * @return Whether the initializingReplication field is set. 37 */ hasInitializingReplication()38 boolean hasInitializingReplication(); 39 /** 40 * 41 * 42 * <pre> 43 * Initializing replication step. 44 * </pre> 45 * 46 * <code>.google.cloud.vmmigration.v1.InitializingReplicationStep initializing_replication = 3; 47 * </code> 48 * 49 * @return The initializingReplication. 50 */ getInitializingReplication()51 com.google.cloud.vmmigration.v1.InitializingReplicationStep getInitializingReplication(); 52 /** 53 * 54 * 55 * <pre> 56 * Initializing replication step. 57 * </pre> 58 * 59 * <code>.google.cloud.vmmigration.v1.InitializingReplicationStep initializing_replication = 3; 60 * </code> 61 */ 62 com.google.cloud.vmmigration.v1.InitializingReplicationStepOrBuilder getInitializingReplicationOrBuilder()63 getInitializingReplicationOrBuilder(); 64 65 /** 66 * 67 * 68 * <pre> 69 * Replicating step. 70 * </pre> 71 * 72 * <code>.google.cloud.vmmigration.v1.ReplicatingStep replicating = 4;</code> 73 * 74 * @return Whether the replicating field is set. 75 */ hasReplicating()76 boolean hasReplicating(); 77 /** 78 * 79 * 80 * <pre> 81 * Replicating step. 82 * </pre> 83 * 84 * <code>.google.cloud.vmmigration.v1.ReplicatingStep replicating = 4;</code> 85 * 86 * @return The replicating. 87 */ getReplicating()88 com.google.cloud.vmmigration.v1.ReplicatingStep getReplicating(); 89 /** 90 * 91 * 92 * <pre> 93 * Replicating step. 94 * </pre> 95 * 96 * <code>.google.cloud.vmmigration.v1.ReplicatingStep replicating = 4;</code> 97 */ getReplicatingOrBuilder()98 com.google.cloud.vmmigration.v1.ReplicatingStepOrBuilder getReplicatingOrBuilder(); 99 100 /** 101 * 102 * 103 * <pre> 104 * Post processing step. 105 * </pre> 106 * 107 * <code>.google.cloud.vmmigration.v1.PostProcessingStep post_processing = 5;</code> 108 * 109 * @return Whether the postProcessing field is set. 110 */ hasPostProcessing()111 boolean hasPostProcessing(); 112 /** 113 * 114 * 115 * <pre> 116 * Post processing step. 117 * </pre> 118 * 119 * <code>.google.cloud.vmmigration.v1.PostProcessingStep post_processing = 5;</code> 120 * 121 * @return The postProcessing. 122 */ getPostProcessing()123 com.google.cloud.vmmigration.v1.PostProcessingStep getPostProcessing(); 124 /** 125 * 126 * 127 * <pre> 128 * Post processing step. 129 * </pre> 130 * 131 * <code>.google.cloud.vmmigration.v1.PostProcessingStep post_processing = 5;</code> 132 */ getPostProcessingOrBuilder()133 com.google.cloud.vmmigration.v1.PostProcessingStepOrBuilder getPostProcessingOrBuilder(); 134 135 /** 136 * 137 * 138 * <pre> 139 * The time the cycle step has started. 140 * </pre> 141 * 142 * <code>.google.protobuf.Timestamp start_time = 1;</code> 143 * 144 * @return Whether the startTime field is set. 145 */ hasStartTime()146 boolean hasStartTime(); 147 /** 148 * 149 * 150 * <pre> 151 * The time the cycle step has started. 152 * </pre> 153 * 154 * <code>.google.protobuf.Timestamp start_time = 1;</code> 155 * 156 * @return The startTime. 157 */ getStartTime()158 com.google.protobuf.Timestamp getStartTime(); 159 /** 160 * 161 * 162 * <pre> 163 * The time the cycle step has started. 164 * </pre> 165 * 166 * <code>.google.protobuf.Timestamp start_time = 1;</code> 167 */ getStartTimeOrBuilder()168 com.google.protobuf.TimestampOrBuilder getStartTimeOrBuilder(); 169 170 /** 171 * 172 * 173 * <pre> 174 * The time the cycle step has ended. 175 * </pre> 176 * 177 * <code>.google.protobuf.Timestamp end_time = 2;</code> 178 * 179 * @return Whether the endTime field is set. 180 */ hasEndTime()181 boolean hasEndTime(); 182 /** 183 * 184 * 185 * <pre> 186 * The time the cycle step has ended. 187 * </pre> 188 * 189 * <code>.google.protobuf.Timestamp end_time = 2;</code> 190 * 191 * @return The endTime. 192 */ getEndTime()193 com.google.protobuf.Timestamp getEndTime(); 194 /** 195 * 196 * 197 * <pre> 198 * The time the cycle step has ended. 199 * </pre> 200 * 201 * <code>.google.protobuf.Timestamp end_time = 2;</code> 202 */ getEndTimeOrBuilder()203 com.google.protobuf.TimestampOrBuilder getEndTimeOrBuilder(); 204 getStepCase()205 public com.google.cloud.vmmigration.v1.CycleStep.StepCase getStepCase(); 206 } 207