com.azure.resourcemanager.cosmos.models.DataTransferServiceResourceCreateUpdateParameters 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;
import com.fasterxml.jackson.annotation.JsonTypeId;
import com.fasterxml.jackson.annotation.JsonTypeInfo;
import com.fasterxml.jackson.annotation.JsonTypeName;
/**
* Parameters for Create or Update request for DataTransferServiceResource.
*/
@JsonTypeInfo(
use = JsonTypeInfo.Id.NAME,
property = "serviceType",
defaultImpl = DataTransferServiceResourceCreateUpdateParameters.class,
visible = true)
@JsonTypeName("DataTransfer")
@Fluent
public final class DataTransferServiceResourceCreateUpdateParameters extends ServiceResourceCreateUpdateProperties {
/*
* ServiceType for the service.
*/
@JsonTypeId
@JsonProperty(value = "serviceType", required = true)
private ServiceType serviceType = ServiceType.DATA_TRANSFER;
/**
* Creates an instance of DataTransferServiceResourceCreateUpdateParameters class.
*/
public DataTransferServiceResourceCreateUpdateParameters() {
}
/**
* Get the serviceType property: ServiceType for the service.
*
* @return the serviceType value.
*/
@Override
public ServiceType serviceType() {
return this.serviceType;
}
/**
* {@inheritDoc}
*/
@Override
public DataTransferServiceResourceCreateUpdateParameters withInstanceSize(ServiceSize instanceSize) {
super.withInstanceSize(instanceSize);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public DataTransferServiceResourceCreateUpdateParameters withInstanceCount(Integer instanceCount) {
super.withInstanceCount(instanceCount);
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
@Override
public void validate() {
super.validate();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy