com.azure.resourcemanager.network.models.ConnectionMonitorEndpoint 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.Fluent;
import com.azure.core.util.logging.ClientLogger;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* Describes the connection monitor endpoint.
*/
@Fluent
public final class ConnectionMonitorEndpoint {
/*
* The name of the connection monitor endpoint.
*/
@JsonProperty(value = "name", required = true)
private String name;
/*
* The endpoint type.
*/
@JsonProperty(value = "type")
private EndpointType type;
/*
* Resource ID of the connection monitor endpoint are supported for AzureVM, AzureVMSS, AzureVNet, AzureSubnet, MMAWorkspaceMachine, MMAWorkspaceNetwork, AzureArcVM endpoint type.
*/
@JsonProperty(value = "resourceId")
private String resourceId;
/*
* Address of the connection monitor endpoint. Supported for AzureVM, ExternalAddress, ArcMachine, MMAWorkspaceMachine endpoint type.
*/
@JsonProperty(value = "address")
private String address;
/*
* Filter field is getting deprecated and should not be used. Instead use Include/Exclude scope fields for it.
*/
@JsonProperty(value = "filter")
private ConnectionMonitorEndpointFilter filter;
/*
* Endpoint scope defines which target resource to monitor in case of compound resource endpoints like VMSS, AzureSubnet, AzureVNet, MMAWorkspaceNetwork, AzureArcNetwork.
*/
@JsonProperty(value = "scope")
private ConnectionMonitorEndpointScope scope;
/*
* Test coverage for the endpoint.
*/
@JsonProperty(value = "coverageLevel")
private CoverageLevel coverageLevel;
/*
* Location details is optional and only being used for 'AzureArcNetwork' type endpoints, which contains region details.
*/
@JsonProperty(value = "locationDetails")
private ConnectionMonitorEndpointLocationDetails locationDetails;
/*
* Subscription ID for connection monitor endpoint. It's an optional parameter which is being used for 'AzureArcNetwork' type endpoint.
*/
@JsonProperty(value = "subscriptionId")
private String subscriptionId;
/**
* Creates an instance of ConnectionMonitorEndpoint class.
*/
public ConnectionMonitorEndpoint() {
}
/**
* Get the name property: The name of the connection monitor endpoint.
*
* @return the name value.
*/
public String name() {
return this.name;
}
/**
* Set the name property: The name of the connection monitor endpoint.
*
* @param name the name value to set.
* @return the ConnectionMonitorEndpoint object itself.
*/
public ConnectionMonitorEndpoint withName(String name) {
this.name = name;
return this;
}
/**
* Get the type property: The endpoint type.
*
* @return the type value.
*/
public EndpointType type() {
return this.type;
}
/**
* Set the type property: The endpoint type.
*
* @param type the type value to set.
* @return the ConnectionMonitorEndpoint object itself.
*/
public ConnectionMonitorEndpoint withType(EndpointType type) {
this.type = type;
return this;
}
/**
* Get the resourceId property: Resource ID of the connection monitor endpoint are supported for AzureVM, AzureVMSS,
* AzureVNet, AzureSubnet, MMAWorkspaceMachine, MMAWorkspaceNetwork, AzureArcVM endpoint type.
*
* @return the resourceId value.
*/
public String resourceId() {
return this.resourceId;
}
/**
* Set the resourceId property: Resource ID of the connection monitor endpoint are supported for AzureVM, AzureVMSS,
* AzureVNet, AzureSubnet, MMAWorkspaceMachine, MMAWorkspaceNetwork, AzureArcVM endpoint type.
*
* @param resourceId the resourceId value to set.
* @return the ConnectionMonitorEndpoint object itself.
*/
public ConnectionMonitorEndpoint withResourceId(String resourceId) {
this.resourceId = resourceId;
return this;
}
/**
* Get the address property: Address of the connection monitor endpoint. Supported for AzureVM, ExternalAddress,
* ArcMachine, MMAWorkspaceMachine endpoint type.
*
* @return the address value.
*/
public String address() {
return this.address;
}
/**
* Set the address property: Address of the connection monitor endpoint. Supported for AzureVM, ExternalAddress,
* ArcMachine, MMAWorkspaceMachine endpoint type.
*
* @param address the address value to set.
* @return the ConnectionMonitorEndpoint object itself.
*/
public ConnectionMonitorEndpoint withAddress(String address) {
this.address = address;
return this;
}
/**
* Get the filter property: Filter field is getting deprecated and should not be used. Instead use Include/Exclude
* scope fields for it.
*
* @return the filter value.
*/
public ConnectionMonitorEndpointFilter filter() {
return this.filter;
}
/**
* Set the filter property: Filter field is getting deprecated and should not be used. Instead use Include/Exclude
* scope fields for it.
*
* @param filter the filter value to set.
* @return the ConnectionMonitorEndpoint object itself.
*/
public ConnectionMonitorEndpoint withFilter(ConnectionMonitorEndpointFilter filter) {
this.filter = filter;
return this;
}
/**
* Get the scope property: Endpoint scope defines which target resource to monitor in case of compound resource
* endpoints like VMSS, AzureSubnet, AzureVNet, MMAWorkspaceNetwork, AzureArcNetwork.
*
* @return the scope value.
*/
public ConnectionMonitorEndpointScope scope() {
return this.scope;
}
/**
* Set the scope property: Endpoint scope defines which target resource to monitor in case of compound resource
* endpoints like VMSS, AzureSubnet, AzureVNet, MMAWorkspaceNetwork, AzureArcNetwork.
*
* @param scope the scope value to set.
* @return the ConnectionMonitorEndpoint object itself.
*/
public ConnectionMonitorEndpoint withScope(ConnectionMonitorEndpointScope scope) {
this.scope = scope;
return this;
}
/**
* Get the coverageLevel property: Test coverage for the endpoint.
*
* @return the coverageLevel value.
*/
public CoverageLevel coverageLevel() {
return this.coverageLevel;
}
/**
* Set the coverageLevel property: Test coverage for the endpoint.
*
* @param coverageLevel the coverageLevel value to set.
* @return the ConnectionMonitorEndpoint object itself.
*/
public ConnectionMonitorEndpoint withCoverageLevel(CoverageLevel coverageLevel) {
this.coverageLevel = coverageLevel;
return this;
}
/**
* Get the locationDetails property: Location details is optional and only being used for 'AzureArcNetwork' type
* endpoints, which contains region details.
*
* @return the locationDetails value.
*/
public ConnectionMonitorEndpointLocationDetails locationDetails() {
return this.locationDetails;
}
/**
* Set the locationDetails property: Location details is optional and only being used for 'AzureArcNetwork' type
* endpoints, which contains region details.
*
* @param locationDetails the locationDetails value to set.
* @return the ConnectionMonitorEndpoint object itself.
*/
public ConnectionMonitorEndpoint withLocationDetails(ConnectionMonitorEndpointLocationDetails locationDetails) {
this.locationDetails = locationDetails;
return this;
}
/**
* Get the subscriptionId property: Subscription ID for connection monitor endpoint. It's an optional parameter
* which is being used for 'AzureArcNetwork' type endpoint.
*
* @return the subscriptionId value.
*/
public String subscriptionId() {
return this.subscriptionId;
}
/**
* Set the subscriptionId property: Subscription ID for connection monitor endpoint. It's an optional parameter
* which is being used for 'AzureArcNetwork' type endpoint.
*
* @param subscriptionId the subscriptionId value to set.
* @return the ConnectionMonitorEndpoint object itself.
*/
public ConnectionMonitorEndpoint withSubscriptionId(String subscriptionId) {
this.subscriptionId = subscriptionId;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (name() == null) {
throw LOGGER.atError()
.log(new IllegalArgumentException("Missing required property name in model ConnectionMonitorEndpoint"));
}
if (filter() != null) {
filter().validate();
}
if (scope() != null) {
scope().validate();
}
if (locationDetails() != null) {
locationDetails().validate();
}
}
private static final ClientLogger LOGGER = new ClientLogger(ConnectionMonitorEndpoint.class);
}