blob: 8b9455f1f2d8becd4afb5209eeb72e55bab6b106 [file] [log] [blame]
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
//<auto-generated />
using System.Runtime.Serialization;
using Org.Apache.REEF.Utilities.Attributes;
namespace Org.Apache.REEF.Client.Avro.Local
{
/// <summary>
/// Used to serialize and deserialize Avro record
/// org.apache.reef.reef.bridge.client.avro.AvroLocalJobSubmissionParameters.
/// This is a (mostly) auto-generated class.
/// For instructions on how to regenerate, please view the README.md in the same folder.
/// </summary>
[Private]
[DataContract(Namespace = "org.apache.reef.reef.bridge.client.avro")]
public sealed class AvroLocalJobSubmissionParameters
{
private const string JsonSchema = @"{""type"":""record"",""name"":""org.apache.reef.reef.bridge.client.avro.AvroLocalJobSubmissionParameters"",""doc"":""Job submission parameters used by the local runtime"",""fields"":[{""name"":""sharedJobSubmissionParameters"",""type"":{""type"":""record"",""name"":""org.apache.reef.reef.bridge.client.avro.AvroJobSubmissionParameters"",""doc"":""General cross-language job submission parameters shared by all runtimes"",""fields"":[{""name"":""jobId"",""type"":""string""},{""name"":""jobSubmissionFolder"",""type"":""string""}]}},{""name"":""driverStdoutFilePath"",""type"":""string""},{""name"":""driverStderrFilePath"",""type"":""string""}]}";
/// <summary>
/// Gets the schema.
/// </summary>
public static string Schema
{
get
{
return JsonSchema;
}
}
/// <summary>
/// Gets or sets the sharedJobSubmissionParameters field.
/// </summary>
[DataMember]
public AvroJobSubmissionParameters sharedJobSubmissionParameters { get; set; }
/// <summary>
/// Gets or sets the driverStdoutFilePath field.
/// </summary>
[DataMember]
public string driverStdoutFilePath { get; set; }
/// <summary>
/// Gets or sets the driverStderrFilePath field.
/// </summary>
[DataMember]
public string driverStderrFilePath { get; set; }
/// <summary>
/// Initializes a new instance of the <see cref="AvroLocalJobSubmissionParameters"/> class.
/// </summary>
public AvroLocalJobSubmissionParameters()
{
}
/// <summary>
/// Initializes a new instance of the <see cref="AvroLocalJobSubmissionParameters"/> class.
/// </summary>
/// <param name="sharedJobSubmissionParameters">The sharedJobSubmissionParameters.</param>
/// <param name="driverStdoutFilePath">The driverStdoutFilePath.</param>
/// <param name="driverStderrFilePath">The driverStderrFilePath.</param>
public AvroLocalJobSubmissionParameters(AvroJobSubmissionParameters sharedJobSubmissionParameters, string driverStdoutFilePath, string driverStderrFilePath)
{
this.sharedJobSubmissionParameters = sharedJobSubmissionParameters;
this.driverStdoutFilePath = driverStdoutFilePath;
this.driverStderrFilePath = driverStderrFilePath;
}
}
}