com.nutanix.dp1.pri.prism.v4.serviceability.ServiceCenter Maven / Gradle / Ivy
/*
* Generated file ..
*
* Product version: 4.0.3-alpha-2
*
* Part of the Nutanix Prism Versioned APIs
*
* (c) 2023 Nutanix Inc. All rights reserved
*
*/
package com.nutanix.dp1.pri.prism.v4.serviceability;
import com.fasterxml.jackson.annotation.JsonAnySetter;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.Setter;
import lombok.AccessLevel;
import com.nutanix.devplatform.models.PrettyModeViews.*;
import com.fasterxml.jackson.annotation.JsonView;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.nutanix.dp1.pri.deserializers.PriObjectTypeTypedObject;
import javax.validation.constraints.*;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import static com.nutanix.dp1.pri.deserializers.PriDeserializerUtils.*;
/**
* Service center to which remote tunnel is connected at Nutanix's end.
*/
@Data
@lombok.extern.slf4j.Slf4j
public class ServiceCenter implements java.io.Serializable, PriObjectTypeTypedObject {
public ServiceCenter() {
this.$objectType = this.initialize$objectType();
this.$reserved = new java.util.LinkedHashMap<>();
this.$reserved.put("$fqObjectType", this.initialize$fqObjectType());
this.$unknownFields = new java.util.LinkedHashMap<>();
}
@lombok.Builder(builderMethodName = "ServiceCenterBuilder")
public ServiceCenter(String name, String ipAddress, String username, Integer port) {
this.$objectType = this.initialize$objectType();
this.$reserved = new java.util.LinkedHashMap<>();
this.$reserved.put("$fqObjectType", this.initialize$fqObjectType());
this.$unknownFields = new java.util.LinkedHashMap<>();
this.setName(name);
this.setIpAddress(ipAddress);
this.setUsername(username);
this.setPort(port);
}
protected String initialize$objectType() {
return "prism.v4.serviceability.ServiceCenter";
}
protected String initialize$fqObjectType() {
return "prism.v4.r0.a2.serviceability.ServiceCenter";
}
@JsonAnySetter
private void setUndeserializedFields(String name, String value) {
$unknownFields.put(name, value);
}
/**
* Name of service center.
*/
@JsonProperty("name")
public String name = null;
/**
* IP address of the service center.
*/
@javax.validation.constraints.Pattern(regexp="^(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$")
@JsonProperty("ipAddress")
public String ipAddress = null;
/**
* Username.
*/
@JsonProperty("username")
public String username = null;
/**
* Port number.
*/
@javax.validation.constraints.Max(value = 65536)
@javax.validation.constraints.Min(value = 0)
@JsonProperty("port")
public Integer port = null;
@Getter
@JsonView({StandardView.class})
protected final Map $reserved;
@Getter
@JsonView({StandardView.class})
protected final String $objectType;
@Getter
@JsonView({StandardView.class})
protected final Map $unknownFields;
}