com.azure.resourcemanager.network.models.HttpConfiguration 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.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
/**
* HTTP configuration of the connectivity check.
*/
@Fluent
public final class HttpConfiguration {
/*
* HTTP method.
*/
@JsonProperty(value = "method")
private HttpMethod method;
/*
* List of HTTP headers.
*/
@JsonProperty(value = "headers")
private List headers;
/*
* Valid status codes.
*/
@JsonProperty(value = "validStatusCodes")
private List validStatusCodes;
/**
* Creates an instance of HttpConfiguration class.
*/
public HttpConfiguration() {
}
/**
* Get the method property: HTTP method.
*
* @return the method value.
*/
public HttpMethod method() {
return this.method;
}
/**
* Set the method property: HTTP method.
*
* @param method the method value to set.
* @return the HttpConfiguration object itself.
*/
public HttpConfiguration withMethod(HttpMethod method) {
this.method = method;
return this;
}
/**
* Get the headers property: List of HTTP headers.
*
* @return the headers value.
*/
public List headers() {
return this.headers;
}
/**
* Set the headers property: List of HTTP headers.
*
* @param headers the headers value to set.
* @return the HttpConfiguration object itself.
*/
public HttpConfiguration withHeaders(List headers) {
this.headers = headers;
return this;
}
/**
* Get the validStatusCodes property: Valid status codes.
*
* @return the validStatusCodes value.
*/
public List validStatusCodes() {
return this.validStatusCodes;
}
/**
* Set the validStatusCodes property: Valid status codes.
*
* @param validStatusCodes the validStatusCodes value to set.
* @return the HttpConfiguration object itself.
*/
public HttpConfiguration withValidStatusCodes(List validStatusCodes) {
this.validStatusCodes = validStatusCodes;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (headers() != null) {
headers().forEach(e -> e.validate());
}
}
}