AzureBlobDataFeedPatch.java
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.ai.metricsadvisor.implementation.models;
import com.azure.core.annotation.Fluent;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonTypeInfo;
import com.fasterxml.jackson.annotation.JsonTypeName;
/** The AzureBlobDataFeedPatch model. */
@JsonTypeInfo(use = JsonTypeInfo.Id.NAME, include = JsonTypeInfo.As.PROPERTY, property = "dataSourceType")
@JsonTypeName("AzureBlob")
@Fluent
public final class AzureBlobDataFeedPatch extends DataFeedDetailPatch {
/*
* The dataSourceParameter property.
*/
@JsonProperty(value = "dataSourceParameter")
private AzureBlobParameterPatch dataSourceParameter;
/**
* Get the dataSourceParameter property: The dataSourceParameter property.
*
* @return the dataSourceParameter value.
*/
public AzureBlobParameterPatch getDataSourceParameter() {
return this.dataSourceParameter;
}
/**
* Set the dataSourceParameter property: The dataSourceParameter property.
*
* @param dataSourceParameter the dataSourceParameter value to set.
* @return the AzureBlobDataFeedPatch object itself.
*/
public AzureBlobDataFeedPatch setDataSourceParameter(AzureBlobParameterPatch dataSourceParameter) {
this.dataSourceParameter = dataSourceParameter;
return this;
}
}