com.microsoft.azure.management.network.ConnectionMonitorTestGroup Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-mgmt-network Show documentation
Show all versions of azure-mgmt-network Show documentation
This package contains Microsoft Azure Network Management SDK. A new set of management libraries are now Generally Available. For documentation on how to use the new libraries, please see https://aka.ms/azsdk/java/mgmt
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
*/
package com.microsoft.azure.management.network;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* Describes the connection monitor test group.
*/
public class ConnectionMonitorTestGroup {
/**
* The name of the connection monitor test group.
*/
@JsonProperty(value = "name", required = true)
private String name;
/**
* Value indicating whether test group is disabled.
*/
@JsonProperty(value = "disable")
private Boolean disable;
/**
* List of test configuration names.
*/
@JsonProperty(value = "testConfigurations", required = true)
private List testConfigurations;
/**
* List of source endpoint names.
*/
@JsonProperty(value = "sources", required = true)
private List sources;
/**
* List of destination endpoint names.
*/
@JsonProperty(value = "destinations", required = true)
private List destinations;
/**
* Get the name of the connection monitor test group.
*
* @return the name value
*/
public String name() {
return this.name;
}
/**
* Set the name of the connection monitor test group.
*
* @param name the name value to set
* @return the ConnectionMonitorTestGroup object itself.
*/
public ConnectionMonitorTestGroup withName(String name) {
this.name = name;
return this;
}
/**
* Get value indicating whether test group is disabled.
*
* @return the disable value
*/
public Boolean disable() {
return this.disable;
}
/**
* Set value indicating whether test group is disabled.
*
* @param disable the disable value to set
* @return the ConnectionMonitorTestGroup object itself.
*/
public ConnectionMonitorTestGroup withDisable(Boolean disable) {
this.disable = disable;
return this;
}
/**
* Get list of test configuration names.
*
* @return the testConfigurations value
*/
public List testConfigurations() {
return this.testConfigurations;
}
/**
* Set list of test configuration names.
*
* @param testConfigurations the testConfigurations value to set
* @return the ConnectionMonitorTestGroup object itself.
*/
public ConnectionMonitorTestGroup withTestConfigurations(List testConfigurations) {
this.testConfigurations = testConfigurations;
return this;
}
/**
* Get list of source endpoint names.
*
* @return the sources value
*/
public List sources() {
return this.sources;
}
/**
* Set list of source endpoint names.
*
* @param sources the sources value to set
* @return the ConnectionMonitorTestGroup object itself.
*/
public ConnectionMonitorTestGroup withSources(List sources) {
this.sources = sources;
return this;
}
/**
* Get list of destination endpoint names.
*
* @return the destinations value
*/
public List destinations() {
return this.destinations;
}
/**
* Set list of destination endpoint names.
*
* @param destinations the destinations value to set
* @return the ConnectionMonitorTestGroup object itself.
*/
public ConnectionMonitorTestGroup withDestinations(List destinations) {
this.destinations = destinations;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy