com.pulumi.azure.servicefabric.inputs.ManagedClusterCustomFabricSettingArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure Show documentation
Show all versions of azure Show documentation
A Pulumi package for creating and managing Microsoft Azure cloud resources, based on the Terraform azurerm provider. We recommend using the [Azure Native provider](https://github.com/pulumi/pulumi-azure-native) to provision Azure infrastructure. Azure Native provides complete coverage of Azure resources and same-day access to new resources and resource updates.
// *** 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.azure.servicefabric.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 ManagedClusterCustomFabricSettingArgs extends com.pulumi.resources.ResourceArgs {
public static final ManagedClusterCustomFabricSettingArgs Empty = new ManagedClusterCustomFabricSettingArgs();
/**
* Parameter name.
*
*/
@Import(name="parameter", required=true)
private Output parameter;
/**
* @return Parameter name.
*
*/
public Output parameter() {
return this.parameter;
}
/**
* Section name.
*
*/
@Import(name="section", required=true)
private Output section;
/**
* @return Section name.
*
*/
public Output section() {
return this.section;
}
/**
* Parameter value.
*
*/
@Import(name="value", required=true)
private Output value;
/**
* @return Parameter value.
*
*/
public Output value() {
return this.value;
}
private ManagedClusterCustomFabricSettingArgs() {}
private ManagedClusterCustomFabricSettingArgs(ManagedClusterCustomFabricSettingArgs $) {
this.parameter = $.parameter;
this.section = $.section;
this.value = $.value;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ManagedClusterCustomFabricSettingArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private ManagedClusterCustomFabricSettingArgs $;
public Builder() {
$ = new ManagedClusterCustomFabricSettingArgs();
}
public Builder(ManagedClusterCustomFabricSettingArgs defaults) {
$ = new ManagedClusterCustomFabricSettingArgs(Objects.requireNonNull(defaults));
}
/**
* @param parameter Parameter name.
*
* @return builder
*
*/
public Builder parameter(Output parameter) {
$.parameter = parameter;
return this;
}
/**
* @param parameter Parameter name.
*
* @return builder
*
*/
public Builder parameter(String parameter) {
return parameter(Output.of(parameter));
}
/**
* @param section Section name.
*
* @return builder
*
*/
public Builder section(Output section) {
$.section = section;
return this;
}
/**
* @param section Section name.
*
* @return builder
*
*/
public Builder section(String section) {
return section(Output.of(section));
}
/**
* @param value Parameter value.
*
* @return builder
*
*/
public Builder value(Output value) {
$.value = value;
return this;
}
/**
* @param value Parameter value.
*
* @return builder
*
*/
public Builder value(String value) {
return value(Output.of(value));
}
public ManagedClusterCustomFabricSettingArgs build() {
if ($.parameter == null) {
throw new MissingRequiredPropertyException("ManagedClusterCustomFabricSettingArgs", "parameter");
}
if ($.section == null) {
throw new MissingRequiredPropertyException("ManagedClusterCustomFabricSettingArgs", "section");
}
if ($.value == null) {
throw new MissingRequiredPropertyException("ManagedClusterCustomFabricSettingArgs", "value");
}
return $;
}
}
}