
com.pulumi.azurenative.devhub.outputs.IacTemplateDetailsResponse 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.devhub.outputs;
import com.pulumi.core.annotations.CustomType;
import java.lang.Integer;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class IacTemplateDetailsResponse {
/**
* @return Count of the product
*
*/
private @Nullable Integer count;
/**
* @return Naming convention of this product
*
*/
private @Nullable String namingConvention;
/**
* @return The name of the products.
*
*/
private @Nullable String productName;
private IacTemplateDetailsResponse() {}
/**
* @return Count of the product
*
*/
public Optional count() {
return Optional.ofNullable(this.count);
}
/**
* @return Naming convention of this product
*
*/
public Optional namingConvention() {
return Optional.ofNullable(this.namingConvention);
}
/**
* @return The name of the products.
*
*/
public Optional productName() {
return Optional.ofNullable(this.productName);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(IacTemplateDetailsResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable Integer count;
private @Nullable String namingConvention;
private @Nullable String productName;
public Builder() {}
public Builder(IacTemplateDetailsResponse defaults) {
Objects.requireNonNull(defaults);
this.count = defaults.count;
this.namingConvention = defaults.namingConvention;
this.productName = defaults.productName;
}
@CustomType.Setter
public Builder count(@Nullable Integer count) {
this.count = count;
return this;
}
@CustomType.Setter
public Builder namingConvention(@Nullable String namingConvention) {
this.namingConvention = namingConvention;
return this;
}
@CustomType.Setter
public Builder productName(@Nullable String productName) {
this.productName = productName;
return this;
}
public IacTemplateDetailsResponse build() {
final var _resultValue = new IacTemplateDetailsResponse();
_resultValue.count = count;
_resultValue.namingConvention = namingConvention;
_resultValue.productName = productName;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy