
com.pulumi.azurenative.operationsmanagement.outputs.ManagementConfigurationPropertiesResponse 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.operationsmanagement.outputs;
import com.pulumi.azurenative.operationsmanagement.outputs.ArmTemplateParameterResponse;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Object;
import java.lang.String;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class ManagementConfigurationPropertiesResponse {
/**
* @return The applicationId of the appliance for this Management.
*
*/
private @Nullable String applicationId;
/**
* @return Parameters to run the ARM template
*
*/
private List parameters;
/**
* @return The type of the parent resource.
*
*/
private String parentResourceType;
/**
* @return The provisioning state for the ManagementConfiguration.
*
*/
private String provisioningState;
/**
* @return The Json object containing the ARM template to deploy
*
*/
private Object template;
private ManagementConfigurationPropertiesResponse() {}
/**
* @return The applicationId of the appliance for this Management.
*
*/
public Optional applicationId() {
return Optional.ofNullable(this.applicationId);
}
/**
* @return Parameters to run the ARM template
*
*/
public List parameters() {
return this.parameters;
}
/**
* @return The type of the parent resource.
*
*/
public String parentResourceType() {
return this.parentResourceType;
}
/**
* @return The provisioning state for the ManagementConfiguration.
*
*/
public String provisioningState() {
return this.provisioningState;
}
/**
* @return The Json object containing the ARM template to deploy
*
*/
public Object template() {
return this.template;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ManagementConfigurationPropertiesResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String applicationId;
private List parameters;
private String parentResourceType;
private String provisioningState;
private Object template;
public Builder() {}
public Builder(ManagementConfigurationPropertiesResponse defaults) {
Objects.requireNonNull(defaults);
this.applicationId = defaults.applicationId;
this.parameters = defaults.parameters;
this.parentResourceType = defaults.parentResourceType;
this.provisioningState = defaults.provisioningState;
this.template = defaults.template;
}
@CustomType.Setter
public Builder applicationId(@Nullable String applicationId) {
this.applicationId = applicationId;
return this;
}
@CustomType.Setter
public Builder parameters(List parameters) {
if (parameters == null) {
throw new MissingRequiredPropertyException("ManagementConfigurationPropertiesResponse", "parameters");
}
this.parameters = parameters;
return this;
}
public Builder parameters(ArmTemplateParameterResponse... parameters) {
return parameters(List.of(parameters));
}
@CustomType.Setter
public Builder parentResourceType(String parentResourceType) {
if (parentResourceType == null) {
throw new MissingRequiredPropertyException("ManagementConfigurationPropertiesResponse", "parentResourceType");
}
this.parentResourceType = parentResourceType;
return this;
}
@CustomType.Setter
public Builder provisioningState(String provisioningState) {
if (provisioningState == null) {
throw new MissingRequiredPropertyException("ManagementConfigurationPropertiesResponse", "provisioningState");
}
this.provisioningState = provisioningState;
return this;
}
@CustomType.Setter
public Builder template(Object template) {
if (template == null) {
throw new MissingRequiredPropertyException("ManagementConfigurationPropertiesResponse", "template");
}
this.template = template;
return this;
}
public ManagementConfigurationPropertiesResponse build() {
final var _resultValue = new ManagementConfigurationPropertiesResponse();
_resultValue.applicationId = applicationId;
_resultValue.parameters = parameters;
_resultValue.parentResourceType = parentResourceType;
_resultValue.provisioningState = provisioningState;
_resultValue.template = template;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy