com.pulumi.akamai.inputs.GetBotmanBotDetectionPlainArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of akamai Show documentation
Show all versions of akamai Show documentation
A Pulumi package for creating and managing akamai cloud resources.
The newest version!
// *** 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.akamai.inputs;
import com.pulumi.core.annotations.Import;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class GetBotmanBotDetectionPlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetBotmanBotDetectionPlainArgs Empty = new GetBotmanBotDetectionPlainArgs();
@Import(name="detectionName")
private @Nullable String detectionName;
public Optional detectionName() {
return Optional.ofNullable(this.detectionName);
}
private GetBotmanBotDetectionPlainArgs() {}
private GetBotmanBotDetectionPlainArgs(GetBotmanBotDetectionPlainArgs $) {
this.detectionName = $.detectionName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetBotmanBotDetectionPlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetBotmanBotDetectionPlainArgs $;
public Builder() {
$ = new GetBotmanBotDetectionPlainArgs();
}
public Builder(GetBotmanBotDetectionPlainArgs defaults) {
$ = new GetBotmanBotDetectionPlainArgs(Objects.requireNonNull(defaults));
}
public Builder detectionName(@Nullable String detectionName) {
$.detectionName = detectionName;
return this;
}
public GetBotmanBotDetectionPlainArgs build() {
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy