
com.azure.resourcemanager.datafactory.models.VariableSpecification Maven / Gradle / Ivy
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.datafactory.models;
import com.azure.core.annotation.Fluent;
import com.azure.core.util.logging.ClientLogger;
import com.azure.json.JsonReader;
import com.azure.json.JsonSerializable;
import com.azure.json.JsonToken;
import com.azure.json.JsonWriter;
import java.io.IOException;
/**
* Definition of a single variable for a Pipeline.
*/
@Fluent
public final class VariableSpecification implements JsonSerializable {
/*
* Variable type.
*/
private VariableType type;
/*
* Default value of variable.
*/
private Object defaultValue;
/**
* Creates an instance of VariableSpecification class.
*/
public VariableSpecification() {
}
/**
* Get the type property: Variable type.
*
* @return the type value.
*/
public VariableType type() {
return this.type;
}
/**
* Set the type property: Variable type.
*
* @param type the type value to set.
* @return the VariableSpecification object itself.
*/
public VariableSpecification withType(VariableType type) {
this.type = type;
return this;
}
/**
* Get the defaultValue property: Default value of variable.
*
* @return the defaultValue value.
*/
public Object defaultValue() {
return this.defaultValue;
}
/**
* Set the defaultValue property: Default value of variable.
*
* @param defaultValue the defaultValue value to set.
* @return the VariableSpecification object itself.
*/
public VariableSpecification withDefaultValue(Object defaultValue) {
this.defaultValue = defaultValue;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (type() == null) {
throw LOGGER.atError()
.log(new IllegalArgumentException("Missing required property type in model VariableSpecification"));
}
}
private static final ClientLogger LOGGER = new ClientLogger(VariableSpecification.class);
/**
* {@inheritDoc}
*/
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
jsonWriter.writeStringField("type", this.type == null ? null : this.type.toString());
jsonWriter.writeUntypedField("defaultValue", this.defaultValue);
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of VariableSpecification from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of VariableSpecification if the JsonReader was pointing to an instance of it, or null if it
* was pointing to JSON null.
* @throws IllegalStateException If the deserialized JSON object was missing any required properties.
* @throws IOException If an error occurs while reading the VariableSpecification.
*/
public static VariableSpecification fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
VariableSpecification deserializedVariableSpecification = new VariableSpecification();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("type".equals(fieldName)) {
deserializedVariableSpecification.type = VariableType.fromString(reader.getString());
} else if ("defaultValue".equals(fieldName)) {
deserializedVariableSpecification.defaultValue = reader.readUntyped();
} else {
reader.skipChildren();
}
}
return deserializedVariableSpecification;
});
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy