com.ovhcloud.pulumi.ovh.Domain.inputs.GetZoneDNSSecArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-ovh Show documentation
Show all versions of pulumi-ovh Show documentation
A Pulumi package for creating and managing OVH 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.ovhcloud.pulumi.ovh.Domain.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 GetZoneDNSSecArgs extends com.pulumi.resources.InvokeArgs {
public static final GetZoneDNSSecArgs Empty = new GetZoneDNSSecArgs();
/**
* The name of the domain zone
*
*/
@Import(name="zoneName", required=true)
private Output zoneName;
/**
* @return The name of the domain zone
*
*/
public Output zoneName() {
return this.zoneName;
}
private GetZoneDNSSecArgs() {}
private GetZoneDNSSecArgs(GetZoneDNSSecArgs $) {
this.zoneName = $.zoneName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetZoneDNSSecArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetZoneDNSSecArgs $;
public Builder() {
$ = new GetZoneDNSSecArgs();
}
public Builder(GetZoneDNSSecArgs defaults) {
$ = new GetZoneDNSSecArgs(Objects.requireNonNull(defaults));
}
/**
* @param zoneName The name of the domain zone
*
* @return builder
*
*/
public Builder zoneName(Output zoneName) {
$.zoneName = zoneName;
return this;
}
/**
* @param zoneName The name of the domain zone
*
* @return builder
*
*/
public Builder zoneName(String zoneName) {
return zoneName(Output.of(zoneName));
}
public GetZoneDNSSecArgs build() {
if ($.zoneName == null) {
throw new MissingRequiredPropertyException("GetZoneDNSSecArgs", "zoneName");
}
return $;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy