com.pulumi.azurenative.hybridnetwork.outputs.SecretDeploymentResourceReferenceResponse 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.
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.azurenative.hybridnetwork.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class SecretDeploymentResourceReferenceResponse {
/**
* @return The resource reference arm id type.
* Expected value is 'Secret'.
*
*/
private String idType;
private SecretDeploymentResourceReferenceResponse() {}
/**
* @return The resource reference arm id type.
* Expected value is 'Secret'.
*
*/
public String idType() {
return this.idType;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(SecretDeploymentResourceReferenceResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String idType;
public Builder() {}
public Builder(SecretDeploymentResourceReferenceResponse defaults) {
Objects.requireNonNull(defaults);
this.idType = defaults.idType;
}
@CustomType.Setter
public Builder idType(String idType) {
if (idType == null) {
throw new MissingRequiredPropertyException("SecretDeploymentResourceReferenceResponse", "idType");
}
this.idType = idType;
return this;
}
public SecretDeploymentResourceReferenceResponse build() {
final var _resultValue = new SecretDeploymentResourceReferenceResponse();
_resultValue.idType = idType;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy