com.pulumi.azure.network.inputs.TrafficManagerAzureEndpointCustomHeaderArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure Show documentation
Show all versions of azure Show documentation
A Pulumi package for creating and managing Microsoft Azure cloud resources, based on the Terraform azurerm provider. We recommend using the [Azure Native provider](https://github.com/pulumi/pulumi-azure-native) to provision Azure infrastructure. Azure Native provides complete coverage of Azure resources and same-day access to new resources and resource updates.
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.azure.network.inputs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class TrafficManagerAzureEndpointCustomHeaderArgs extends com.pulumi.resources.ResourceArgs {
public static final TrafficManagerAzureEndpointCustomHeaderArgs Empty = new TrafficManagerAzureEndpointCustomHeaderArgs();
/**
* The name of the custom header.
*
*/
@Import(name="name", required=true)
private Output name;
/**
* @return The name of the custom header.
*
*/
public Output name() {
return this.name;
}
/**
* The value of custom header. Applicable for HTTP and HTTPS protocol.
*
*/
@Import(name="value", required=true)
private Output value;
/**
* @return The value of custom header. Applicable for HTTP and HTTPS protocol.
*
*/
public Output value() {
return this.value;
}
private TrafficManagerAzureEndpointCustomHeaderArgs() {}
private TrafficManagerAzureEndpointCustomHeaderArgs(TrafficManagerAzureEndpointCustomHeaderArgs $) {
this.name = $.name;
this.value = $.value;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(TrafficManagerAzureEndpointCustomHeaderArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private TrafficManagerAzureEndpointCustomHeaderArgs $;
public Builder() {
$ = new TrafficManagerAzureEndpointCustomHeaderArgs();
}
public Builder(TrafficManagerAzureEndpointCustomHeaderArgs defaults) {
$ = new TrafficManagerAzureEndpointCustomHeaderArgs(Objects.requireNonNull(defaults));
}
/**
* @param name The name of the custom header.
*
* @return builder
*
*/
public Builder name(Output name) {
$.name = name;
return this;
}
/**
* @param name The name of the custom header.
*
* @return builder
*
*/
public Builder name(String name) {
return name(Output.of(name));
}
/**
* @param value The value of custom header. Applicable for HTTP and HTTPS protocol.
*
* @return builder
*
*/
public Builder value(Output value) {
$.value = value;
return this;
}
/**
* @param value The value of custom header. Applicable for HTTP and HTTPS protocol.
*
* @return builder
*
*/
public Builder value(String value) {
return value(Output.of(value));
}
public TrafficManagerAzureEndpointCustomHeaderArgs build() {
if ($.name == null) {
throw new MissingRequiredPropertyException("TrafficManagerAzureEndpointCustomHeaderArgs", "name");
}
if ($.value == null) {
throw new MissingRequiredPropertyException("TrafficManagerAzureEndpointCustomHeaderArgs", "value");
}
return $;
}
}
}