com.pulumi.azurenative.cdn.inputs.DeliveryRuleCookiesConditionArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-native Show documentation
Show all versions of azure-native Show documentation
A native Pulumi package for creating and managing Azure resources.
// *** 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.azurenative.cdn.inputs;
import com.pulumi.azurenative.cdn.inputs.CookiesMatchConditionParametersArgs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.core.internal.Codegen;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
/**
* Defines the Cookies condition for the delivery rule.
*
*/
public final class DeliveryRuleCookiesConditionArgs extends com.pulumi.resources.ResourceArgs {
public static final DeliveryRuleCookiesConditionArgs Empty = new DeliveryRuleCookiesConditionArgs();
/**
* The name of the condition for the delivery rule.
* Expected value is 'Cookies'.
*
*/
@Import(name="name", required=true)
private Output name;
/**
* @return The name of the condition for the delivery rule.
* Expected value is 'Cookies'.
*
*/
public Output name() {
return this.name;
}
/**
* Defines the parameters for the condition.
*
*/
@Import(name="parameters", required=true)
private Output parameters;
/**
* @return Defines the parameters for the condition.
*
*/
public Output parameters() {
return this.parameters;
}
private DeliveryRuleCookiesConditionArgs() {}
private DeliveryRuleCookiesConditionArgs(DeliveryRuleCookiesConditionArgs $) {
this.name = $.name;
this.parameters = $.parameters;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(DeliveryRuleCookiesConditionArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private DeliveryRuleCookiesConditionArgs $;
public Builder() {
$ = new DeliveryRuleCookiesConditionArgs();
}
public Builder(DeliveryRuleCookiesConditionArgs defaults) {
$ = new DeliveryRuleCookiesConditionArgs(Objects.requireNonNull(defaults));
}
/**
* @param name The name of the condition for the delivery rule.
* Expected value is 'Cookies'.
*
* @return builder
*
*/
public Builder name(Output name) {
$.name = name;
return this;
}
/**
* @param name The name of the condition for the delivery rule.
* Expected value is 'Cookies'.
*
* @return builder
*
*/
public Builder name(String name) {
return name(Output.of(name));
}
/**
* @param parameters Defines the parameters for the condition.
*
* @return builder
*
*/
public Builder parameters(Output parameters) {
$.parameters = parameters;
return this;
}
/**
* @param parameters Defines the parameters for the condition.
*
* @return builder
*
*/
public Builder parameters(CookiesMatchConditionParametersArgs parameters) {
return parameters(Output.of(parameters));
}
public DeliveryRuleCookiesConditionArgs build() {
$.name = Codegen.stringProp("name").output().arg($.name).require();
if ($.parameters == null) {
throw new MissingRequiredPropertyException("DeliveryRuleCookiesConditionArgs", "parameters");
}
return $;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy