internal TaskFailureInformation(Models.TaskFailureInformation protocolObject)
 {
     this.Category = UtilitiesInternal.MapEnum <Models.ErrorCategory, Common.ErrorCategory>(protocolObject.Category);
     this.Code     = protocolObject.Code;
     this.Details  = NameValuePair.ConvertFromProtocolCollectionReadOnly(protocolObject.Details);
     this.Message  = protocolObject.Message;
 }
예제 #2
0
 internal JobSchedulingError(Models.JobSchedulingError protocolObject)
 {
     this.Category = UtilitiesInternal.MapEnum <Models.ErrorCategory, Common.ErrorCategory>(protocolObject.Category);
     this.Code     = protocolObject.Code;
     this.Details  = NameValuePair.ConvertFromProtocolCollectionReadOnly(protocolObject.Details);
     this.Message  = protocolObject.Message;
 }
예제 #3
0
 internal AutoScaleRunError(Models.AutoScaleRunError protocolObject)
 {
     this.code    = protocolObject.Code;
     this.message = protocolObject.Message;
     this.values  = NameValuePair.ConvertFromProtocolCollectionReadOnly(protocolObject.Values);
 }
예제 #4
0
 internal DeleteCertificateError(Models.DeleteCertificateError protocolObject)
 {
     this.code    = protocolObject.Code;
     this.message = protocolObject.Message;
     this.values  = NameValuePair.ConvertFromProtocolCollectionReadOnly(protocolObject.Values);
 }
 internal ComputeNodeError(Models.ComputeNodeError protocolObject)
 {
     this.Code         = protocolObject.Code;
     this.ErrorDetails = NameValuePair.ConvertFromProtocolCollectionReadOnly(protocolObject.ErrorDetails);
     this.Message      = protocolObject.Message;
 }
예제 #6
0
 internal ResizeError(Models.ResizeError protocolObject)
 {
     this.Code    = protocolObject.Code;
     this.Message = protocolObject.Message;
     this.Values  = NameValuePair.ConvertFromProtocolCollectionReadOnly(protocolObject.Values);
 }