com.azure.resourcemanager.cosmos.models.AnalyticalStorageConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-cosmos Show documentation
Show all versions of azure-resourcemanager-cosmos Show documentation
This package contains Microsoft Azure CosmosDB SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.cosmos.models;
import com.azure.core.annotation.Fluent;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* Analytical storage specific properties.
*/
@Fluent
public final class AnalyticalStorageConfiguration {
/*
* Describes the types of schema for analytical storage.
*/
@JsonProperty(value = "schemaType")
private AnalyticalStorageSchemaType schemaType;
/**
* Creates an instance of AnalyticalStorageConfiguration class.
*/
public AnalyticalStorageConfiguration() {
}
/**
* Get the schemaType property: Describes the types of schema for analytical storage.
*
* @return the schemaType value.
*/
public AnalyticalStorageSchemaType schemaType() {
return this.schemaType;
}
/**
* Set the schemaType property: Describes the types of schema for analytical storage.
*
* @param schemaType the schemaType value to set.
* @return the AnalyticalStorageConfiguration object itself.
*/
public AnalyticalStorageConfiguration withSchemaType(AnalyticalStorageSchemaType schemaType) {
this.schemaType = schemaType;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy