com.azure.resourcemanager.appplatform.models.ClusterResourceProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-appplatform Show documentation
Show all versions of azure-resourcemanager-appplatform Show documentation
This package contains Microsoft Azure App Platform Management 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.appplatform.models;
import com.azure.core.annotation.Fluent;
import com.fasterxml.jackson.annotation.JsonProperty;
/** Service properties payload. */
@Fluent
public final class ClusterResourceProperties {
/*
* Provisioning state of the Service
*/
@JsonProperty(value = "provisioningState", access = JsonProperty.Access.WRITE_ONLY)
private ProvisioningState provisioningState;
/*
* Network profile of the Service
*/
@JsonProperty(value = "networkProfile")
private NetworkProfile networkProfile;
/*
* Version of the Service
*/
@JsonProperty(value = "version", access = JsonProperty.Access.WRITE_ONLY)
private Integer version;
/*
* ServiceInstanceEntity GUID which uniquely identifies a created resource
*/
@JsonProperty(value = "serviceId", access = JsonProperty.Access.WRITE_ONLY)
private String serviceId;
/*
* The zoneRedundant property.
*/
@JsonProperty(value = "zoneRedundant")
private Boolean zoneRedundant;
/*
* Fully qualified dns name of the service instance
*/
@JsonProperty(value = "fqdn", access = JsonProperty.Access.WRITE_ONLY)
private String fqdn;
/**
* Get the provisioningState property: Provisioning state of the Service.
*
* @return the provisioningState value.
*/
public ProvisioningState provisioningState() {
return this.provisioningState;
}
/**
* Get the networkProfile property: Network profile of the Service.
*
* @return the networkProfile value.
*/
public NetworkProfile networkProfile() {
return this.networkProfile;
}
/**
* Set the networkProfile property: Network profile of the Service.
*
* @param networkProfile the networkProfile value to set.
* @return the ClusterResourceProperties object itself.
*/
public ClusterResourceProperties withNetworkProfile(NetworkProfile networkProfile) {
this.networkProfile = networkProfile;
return this;
}
/**
* Get the version property: Version of the Service.
*
* @return the version value.
*/
public Integer version() {
return this.version;
}
/**
* Get the serviceId property: ServiceInstanceEntity GUID which uniquely identifies a created resource.
*
* @return the serviceId value.
*/
public String serviceId() {
return this.serviceId;
}
/**
* Get the zoneRedundant property: The zoneRedundant property.
*
* @return the zoneRedundant value.
*/
public Boolean zoneRedundant() {
return this.zoneRedundant;
}
/**
* Set the zoneRedundant property: The zoneRedundant property.
*
* @param zoneRedundant the zoneRedundant value to set.
* @return the ClusterResourceProperties object itself.
*/
public ClusterResourceProperties withZoneRedundant(Boolean zoneRedundant) {
this.zoneRedundant = zoneRedundant;
return this;
}
/**
* Get the fqdn property: Fully qualified dns name of the service instance.
*
* @return the fqdn value.
*/
public String fqdn() {
return this.fqdn;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (networkProfile() != null) {
networkProfile().validate();
}
}
}