com.azure.resourcemanager.cosmos.models.SqlDedicatedGatewayServiceResourceProperties 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;
import java.util.List;
/**
* Properties for SqlDedicatedGatewayServiceResource.
*/
@JsonTypeInfo(
use = JsonTypeInfo.Id.NAME,
property = "serviceType",
defaultImpl = SqlDedicatedGatewayServiceResourceProperties.class,
visible = true)
@JsonTypeName("SqlDedicatedGateway")
@Fluent
public final class SqlDedicatedGatewayServiceResourceProperties extends ServiceResourceProperties {
/*
* ServiceType for the service.
*/
@JsonTypeId
@JsonProperty(value = "serviceType", required = true)
private ServiceType serviceType = ServiceType.SQL_DEDICATED_GATEWAY;
/*
* SqlDedicatedGateway endpoint for the service.
*/
@JsonProperty(value = "sqlDedicatedGatewayEndpoint")
private String sqlDedicatedGatewayEndpoint;
/*
* DedicatedGatewayType for the service.
*/
@JsonProperty(value = "dedicatedGatewayType")
private DedicatedGatewayType dedicatedGatewayType;
/*
* An array that contains all of the locations for the service.
*/
@JsonProperty(value = "locations", access = JsonProperty.Access.WRITE_ONLY)
private List locations;
/**
* Creates an instance of SqlDedicatedGatewayServiceResourceProperties class.
*/
public SqlDedicatedGatewayServiceResourceProperties() {
}
/**
* Get the serviceType property: ServiceType for the service.
*
* @return the serviceType value.
*/
@Override
public ServiceType serviceType() {
return this.serviceType;
}
/**
* Get the sqlDedicatedGatewayEndpoint property: SqlDedicatedGateway endpoint for the service.
*
* @return the sqlDedicatedGatewayEndpoint value.
*/
public String sqlDedicatedGatewayEndpoint() {
return this.sqlDedicatedGatewayEndpoint;
}
/**
* Set the sqlDedicatedGatewayEndpoint property: SqlDedicatedGateway endpoint for the service.
*
* @param sqlDedicatedGatewayEndpoint the sqlDedicatedGatewayEndpoint value to set.
* @return the SqlDedicatedGatewayServiceResourceProperties object itself.
*/
public SqlDedicatedGatewayServiceResourceProperties
withSqlDedicatedGatewayEndpoint(String sqlDedicatedGatewayEndpoint) {
this.sqlDedicatedGatewayEndpoint = sqlDedicatedGatewayEndpoint;
return this;
}
/**
* Get the dedicatedGatewayType property: DedicatedGatewayType for the service.
*
* @return the dedicatedGatewayType value.
*/
public DedicatedGatewayType dedicatedGatewayType() {
return this.dedicatedGatewayType;
}
/**
* Set the dedicatedGatewayType property: DedicatedGatewayType for the service.
*
* @param dedicatedGatewayType the dedicatedGatewayType value to set.
* @return the SqlDedicatedGatewayServiceResourceProperties object itself.
*/
public SqlDedicatedGatewayServiceResourceProperties
withDedicatedGatewayType(DedicatedGatewayType dedicatedGatewayType) {
this.dedicatedGatewayType = dedicatedGatewayType;
return this;
}
/**
* Get the locations property: An array that contains all of the locations for the service.
*
* @return the locations value.
*/
public List locations() {
return this.locations;
}
/**
* {@inheritDoc}
*/
@Override
public SqlDedicatedGatewayServiceResourceProperties withInstanceSize(ServiceSize instanceSize) {
super.withInstanceSize(instanceSize);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public SqlDedicatedGatewayServiceResourceProperties 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();
if (locations() != null) {
locations().forEach(e -> e.validate());
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy