All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.azure.resourcemanager.datafactory.models.AzureBlobStorageLocation 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.json.JsonReader;
import com.azure.json.JsonToken;
import com.azure.json.JsonWriter;
import java.io.IOException;
import java.util.LinkedHashMap;
import java.util.Map;

/**
 * The location of azure blob dataset.
 */
@Fluent
public final class AzureBlobStorageLocation extends DatasetLocation {
    /*
     * Type of dataset storage location.
     */
    private String type = "AzureBlobStorageLocation";

    /*
     * Specify the container of azure blob. Type: string (or Expression with resultType string).
     */
    private Object container;

    /**
     * Creates an instance of AzureBlobStorageLocation class.
     */
    public AzureBlobStorageLocation() {
    }

    /**
     * Get the type property: Type of dataset storage location.
     * 
     * @return the type value.
     */
    @Override
    public String type() {
        return this.type;
    }

    /**
     * Get the container property: Specify the container of azure blob. Type: string (or Expression with resultType
     * string).
     * 
     * @return the container value.
     */
    public Object container() {
        return this.container;
    }

    /**
     * Set the container property: Specify the container of azure blob. Type: string (or Expression with resultType
     * string).
     * 
     * @param container the container value to set.
     * @return the AzureBlobStorageLocation object itself.
     */
    public AzureBlobStorageLocation withContainer(Object container) {
        this.container = container;
        return this;
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public AzureBlobStorageLocation withFolderPath(Object folderPath) {
        super.withFolderPath(folderPath);
        return this;
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public AzureBlobStorageLocation withFileName(Object fileName) {
        super.withFileName(fileName);
        return this;
    }

    /**
     * Validates the instance.
     * 
     * @throws IllegalArgumentException thrown if the instance is not valid.
     */
    @Override
    public void validate() {
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
        jsonWriter.writeStartObject();
        jsonWriter.writeUntypedField("folderPath", folderPath());
        jsonWriter.writeUntypedField("fileName", fileName());
        jsonWriter.writeStringField("type", this.type);
        jsonWriter.writeUntypedField("container", this.container);
        if (additionalProperties() != null) {
            for (Map.Entry additionalProperty : additionalProperties().entrySet()) {
                jsonWriter.writeUntypedField(additionalProperty.getKey(), additionalProperty.getValue());
            }
        }
        return jsonWriter.writeEndObject();
    }

    /**
     * Reads an instance of AzureBlobStorageLocation from the JsonReader.
     * 
     * @param jsonReader The JsonReader being read.
     * @return An instance of AzureBlobStorageLocation if the JsonReader was pointing to an instance of it, or null if
     * it was pointing to JSON null.
     * @throws IOException If an error occurs while reading the AzureBlobStorageLocation.
     */
    public static AzureBlobStorageLocation fromJson(JsonReader jsonReader) throws IOException {
        return jsonReader.readObject(reader -> {
            AzureBlobStorageLocation deserializedAzureBlobStorageLocation = new AzureBlobStorageLocation();
            Map additionalProperties = null;
            while (reader.nextToken() != JsonToken.END_OBJECT) {
                String fieldName = reader.getFieldName();
                reader.nextToken();

                if ("folderPath".equals(fieldName)) {
                    deserializedAzureBlobStorageLocation.withFolderPath(reader.readUntyped());
                } else if ("fileName".equals(fieldName)) {
                    deserializedAzureBlobStorageLocation.withFileName(reader.readUntyped());
                } else if ("type".equals(fieldName)) {
                    deserializedAzureBlobStorageLocation.type = reader.getString();
                } else if ("container".equals(fieldName)) {
                    deserializedAzureBlobStorageLocation.container = reader.readUntyped();
                } else {
                    if (additionalProperties == null) {
                        additionalProperties = new LinkedHashMap<>();
                    }

                    additionalProperties.put(fieldName, reader.readUntyped());
                }
            }
            deserializedAzureBlobStorageLocation.withAdditionalProperties(additionalProperties);

            return deserializedAzureBlobStorageLocation;
        });
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy