
com.pulumi.azurenative.sql.inputs.ServerInfoArgs 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.sql.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;
/**
* Server info for the server trust group.
*
*/
public final class ServerInfoArgs extends com.pulumi.resources.ResourceArgs {
public static final ServerInfoArgs Empty = new ServerInfoArgs();
/**
* Server Id.
*
*/
@Import(name="serverId", required=true)
private Output serverId;
/**
* @return Server Id.
*
*/
public Output serverId() {
return this.serverId;
}
private ServerInfoArgs() {}
private ServerInfoArgs(ServerInfoArgs $) {
this.serverId = $.serverId;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ServerInfoArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private ServerInfoArgs $;
public Builder() {
$ = new ServerInfoArgs();
}
public Builder(ServerInfoArgs defaults) {
$ = new ServerInfoArgs(Objects.requireNonNull(defaults));
}
/**
* @param serverId Server Id.
*
* @return builder
*
*/
public Builder serverId(Output serverId) {
$.serverId = serverId;
return this;
}
/**
* @param serverId Server Id.
*
* @return builder
*
*/
public Builder serverId(String serverId) {
return serverId(Output.of(serverId));
}
public ServerInfoArgs build() {
if ($.serverId == null) {
throw new MissingRequiredPropertyException("ServerInfoArgs", "serverId");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy