@@ -6666,7 +6666,8 @@ proto.wsman.WorkspaceConditions.toObject = function(includeInstance, msg) {
6666
6666
firstUserActivity : ( f = msg . getFirstUserActivity ( ) ) && google_protobuf_timestamp_pb . Timestamp . toObject ( includeInstance , f ) ,
6667
6667
headlessTaskFailed : jspb . Message . getFieldWithDefault ( msg , 10 , "" ) ,
6668
6668
stoppedByRequest : jspb . Message . getFieldWithDefault ( msg , 11 , 0 ) ,
6669
- volumeSnapshot : ( f = msg . getVolumeSnapshot ( ) ) && proto . wsman . VolumeSnapshotInfo . toObject ( includeInstance , f )
6669
+ volumeSnapshot : ( f = msg . getVolumeSnapshot ( ) ) && proto . wsman . VolumeSnapshotInfo . toObject ( includeInstance , f ) ,
6670
+ aborted : jspb . Message . getFieldWithDefault ( msg , 13 , 0 )
6670
6671
} ;
6671
6672
6672
6673
if ( includeInstance ) {
@@ -6749,6 +6750,10 @@ proto.wsman.WorkspaceConditions.deserializeBinaryFromReader = function(msg, read
6749
6750
reader . readMessage ( value , proto . wsman . VolumeSnapshotInfo . deserializeBinaryFromReader ) ;
6750
6751
msg . setVolumeSnapshot ( value ) ;
6751
6752
break ;
6753
+ case 13 :
6754
+ var value = /** @type {!proto.wsman.WorkspaceConditionBool } */ ( reader . readEnum ( ) ) ;
6755
+ msg . setAborted ( value ) ;
6756
+ break ;
6752
6757
default :
6753
6758
reader . skipField ( ) ;
6754
6759
break ;
@@ -6857,6 +6862,13 @@ proto.wsman.WorkspaceConditions.serializeBinaryToWriter = function(message, writ
6857
6862
proto . wsman . VolumeSnapshotInfo . serializeBinaryToWriter
6858
6863
) ;
6859
6864
}
6865
+ f = message . getAborted ( ) ;
6866
+ if ( f !== 0.0 ) {
6867
+ writer . writeEnum (
6868
+ 13 ,
6869
+ f
6870
+ ) ;
6871
+ }
6860
6872
} ;
6861
6873
6862
6874
@@ -7096,6 +7108,24 @@ proto.wsman.WorkspaceConditions.prototype.hasVolumeSnapshot = function() {
7096
7108
} ;
7097
7109
7098
7110
7111
+ /**
7112
+ * optional WorkspaceConditionBool aborted = 13;
7113
+ * @return {!proto.wsman.WorkspaceConditionBool }
7114
+ */
7115
+ proto . wsman . WorkspaceConditions . prototype . getAborted = function ( ) {
7116
+ return /** @type {!proto.wsman.WorkspaceConditionBool } */ ( jspb . Message . getFieldWithDefault ( this , 13 , 0 ) ) ;
7117
+ } ;
7118
+
7119
+
7120
+ /**
7121
+ * @param {!proto.wsman.WorkspaceConditionBool } value
7122
+ * @return {!proto.wsman.WorkspaceConditions } returns this
7123
+ */
7124
+ proto . wsman . WorkspaceConditions . prototype . setAborted = function ( value ) {
7125
+ return jspb . Message . setProto3EnumField ( this , 13 , value ) ;
7126
+ } ;
7127
+
7128
+
7099
7129
7100
7130
7101
7131
@@ -9756,7 +9786,8 @@ proto.wsman.WorkspaceClass.prototype.setDisplayname = function(value) {
9756
9786
*/
9757
9787
proto . wsman . StopWorkspacePolicy = {
9758
9788
NORMALLY : 0 ,
9759
- IMMEDIATELY : 1
9789
+ IMMEDIATELY : 1 ,
9790
+ ABORT : 2
9760
9791
} ;
9761
9792
9762
9793
/**
0 commit comments