com.pulumi.azurenative.policyinsights.inputs.GetAttestationAtSubscriptionArgs 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.policyinsights.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 GetAttestationAtSubscriptionArgs extends com.pulumi.resources.InvokeArgs {
public static final GetAttestationAtSubscriptionArgs Empty = new GetAttestationAtSubscriptionArgs();
/**
* The name of the attestation.
*
*/
@Import(name="attestationName", required=true)
private Output attestationName;
/**
* @return The name of the attestation.
*
*/
public Output attestationName() {
return this.attestationName;
}
private GetAttestationAtSubscriptionArgs() {}
private GetAttestationAtSubscriptionArgs(GetAttestationAtSubscriptionArgs $) {
this.attestationName = $.attestationName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetAttestationAtSubscriptionArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetAttestationAtSubscriptionArgs $;
public Builder() {
$ = new GetAttestationAtSubscriptionArgs();
}
public Builder(GetAttestationAtSubscriptionArgs defaults) {
$ = new GetAttestationAtSubscriptionArgs(Objects.requireNonNull(defaults));
}
/**
* @param attestationName The name of the attestation.
*
* @return builder
*
*/
public Builder attestationName(Output attestationName) {
$.attestationName = attestationName;
return this;
}
/**
* @param attestationName The name of the attestation.
*
* @return builder
*
*/
public Builder attestationName(String attestationName) {
return attestationName(Output.of(attestationName));
}
public GetAttestationAtSubscriptionArgs build() {
if ($.attestationName == null) {
throw new MissingRequiredPropertyException("GetAttestationAtSubscriptionArgs", "attestationName");
}
return $;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy