com.pulumi.azurenative.sql.inputs.GetEncryptionProtectorArgs 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;
public final class GetEncryptionProtectorArgs extends com.pulumi.resources.InvokeArgs {
public static final GetEncryptionProtectorArgs Empty = new GetEncryptionProtectorArgs();
/**
* The name of the encryption protector to be retrieved.
*
*/
@Import(name="encryptionProtectorName", required=true)
private Output encryptionProtectorName;
/**
* @return The name of the encryption protector to be retrieved.
*
*/
public Output encryptionProtectorName() {
return this.encryptionProtectorName;
}
/**
* The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
*
*/
@Import(name="resourceGroupName", required=true)
private Output resourceGroupName;
/**
* @return The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
*
*/
public Output resourceGroupName() {
return this.resourceGroupName;
}
/**
* The name of the server.
*
*/
@Import(name="serverName", required=true)
private Output serverName;
/**
* @return The name of the server.
*
*/
public Output serverName() {
return this.serverName;
}
private GetEncryptionProtectorArgs() {}
private GetEncryptionProtectorArgs(GetEncryptionProtectorArgs $) {
this.encryptionProtectorName = $.encryptionProtectorName;
this.resourceGroupName = $.resourceGroupName;
this.serverName = $.serverName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetEncryptionProtectorArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetEncryptionProtectorArgs $;
public Builder() {
$ = new GetEncryptionProtectorArgs();
}
public Builder(GetEncryptionProtectorArgs defaults) {
$ = new GetEncryptionProtectorArgs(Objects.requireNonNull(defaults));
}
/**
* @param encryptionProtectorName The name of the encryption protector to be retrieved.
*
* @return builder
*
*/
public Builder encryptionProtectorName(Output encryptionProtectorName) {
$.encryptionProtectorName = encryptionProtectorName;
return this;
}
/**
* @param encryptionProtectorName The name of the encryption protector to be retrieved.
*
* @return builder
*
*/
public Builder encryptionProtectorName(String encryptionProtectorName) {
return encryptionProtectorName(Output.of(encryptionProtectorName));
}
/**
* @param resourceGroupName The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
*
* @return builder
*
*/
public Builder resourceGroupName(Output resourceGroupName) {
$.resourceGroupName = resourceGroupName;
return this;
}
/**
* @param resourceGroupName The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
*
* @return builder
*
*/
public Builder resourceGroupName(String resourceGroupName) {
return resourceGroupName(Output.of(resourceGroupName));
}
/**
* @param serverName The name of the server.
*
* @return builder
*
*/
public Builder serverName(Output serverName) {
$.serverName = serverName;
return this;
}
/**
* @param serverName The name of the server.
*
* @return builder
*
*/
public Builder serverName(String serverName) {
return serverName(Output.of(serverName));
}
public GetEncryptionProtectorArgs build() {
if ($.encryptionProtectorName == null) {
throw new MissingRequiredPropertyException("GetEncryptionProtectorArgs", "encryptionProtectorName");
}
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("GetEncryptionProtectorArgs", "resourceGroupName");
}
if ($.serverName == null) {
throw new MissingRequiredPropertyException("GetEncryptionProtectorArgs", "serverName");
}
return $;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy