com.azure.resourcemanager.network.models.ConnectivityHop Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-network Show documentation
Show all versions of azure-resourcemanager-network Show documentation
This package contains Microsoft Azure Network 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.network.models;
import com.azure.core.annotation.Immutable;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
/**
* Information about a hop between the source and the destination.
*/
@Immutable
public final class ConnectivityHop {
/*
* The type of the hop.
*/
@JsonProperty(value = "type", access = JsonProperty.Access.WRITE_ONLY)
private String type;
/*
* The ID of the hop.
*/
@JsonProperty(value = "id", access = JsonProperty.Access.WRITE_ONLY)
private String id;
/*
* The IP address of the hop.
*/
@JsonProperty(value = "address", access = JsonProperty.Access.WRITE_ONLY)
private String address;
/*
* The ID of the resource corresponding to this hop.
*/
@JsonProperty(value = "resourceId", access = JsonProperty.Access.WRITE_ONLY)
private String resourceId;
/*
* List of next hop identifiers.
*/
@JsonProperty(value = "nextHopIds", access = JsonProperty.Access.WRITE_ONLY)
private List nextHopIds;
/*
* List of previous hop identifiers.
*/
@JsonProperty(value = "previousHopIds", access = JsonProperty.Access.WRITE_ONLY)
private List previousHopIds;
/*
* List of hop links.
*/
@JsonProperty(value = "links", access = JsonProperty.Access.WRITE_ONLY)
private List links;
/*
* List of previous hop links.
*/
@JsonProperty(value = "previousLinks", access = JsonProperty.Access.WRITE_ONLY)
private List previousLinks;
/*
* List of issues.
*/
@JsonProperty(value = "issues", access = JsonProperty.Access.WRITE_ONLY)
private List issues;
/**
* Creates an instance of ConnectivityHop class.
*/
public ConnectivityHop() {
}
/**
* Get the type property: The type of the hop.
*
* @return the type value.
*/
public String type() {
return this.type;
}
/**
* Get the id property: The ID of the hop.
*
* @return the id value.
*/
public String id() {
return this.id;
}
/**
* Get the address property: The IP address of the hop.
*
* @return the address value.
*/
public String address() {
return this.address;
}
/**
* Get the resourceId property: The ID of the resource corresponding to this hop.
*
* @return the resourceId value.
*/
public String resourceId() {
return this.resourceId;
}
/**
* Get the nextHopIds property: List of next hop identifiers.
*
* @return the nextHopIds value.
*/
public List nextHopIds() {
return this.nextHopIds;
}
/**
* Get the previousHopIds property: List of previous hop identifiers.
*
* @return the previousHopIds value.
*/
public List previousHopIds() {
return this.previousHopIds;
}
/**
* Get the links property: List of hop links.
*
* @return the links value.
*/
public List links() {
return this.links;
}
/**
* Get the previousLinks property: List of previous hop links.
*
* @return the previousLinks value.
*/
public List previousLinks() {
return this.previousLinks;
}
/**
* Get the issues property: List of issues.
*
* @return the issues value.
*/
public List issues() {
return this.issues;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (links() != null) {
links().forEach(e -> e.validate());
}
if (previousLinks() != null) {
previousLinks().forEach(e -> e.validate());
}
if (issues() != null) {
issues().forEach(e -> e.validate());
}
}
}