
com.pulumi.azurenative.appplatform.outputs.ApplicationLiveViewPropertiesResponse 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.appplatform.outputs;
import com.pulumi.azurenative.appplatform.outputs.ApplicationLiveViewComponentResponse;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.List;
import java.util.Objects;
@CustomType
public final class ApplicationLiveViewPropertiesResponse {
/**
* @return Component details of Application Live View
*
*/
private List components;
/**
* @return State of the Application Live View.
*
*/
private String provisioningState;
private ApplicationLiveViewPropertiesResponse() {}
/**
* @return Component details of Application Live View
*
*/
public List components() {
return this.components;
}
/**
* @return State of the Application Live View.
*
*/
public String provisioningState() {
return this.provisioningState;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ApplicationLiveViewPropertiesResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private List components;
private String provisioningState;
public Builder() {}
public Builder(ApplicationLiveViewPropertiesResponse defaults) {
Objects.requireNonNull(defaults);
this.components = defaults.components;
this.provisioningState = defaults.provisioningState;
}
@CustomType.Setter
public Builder components(List components) {
if (components == null) {
throw new MissingRequiredPropertyException("ApplicationLiveViewPropertiesResponse", "components");
}
this.components = components;
return this;
}
public Builder components(ApplicationLiveViewComponentResponse... components) {
return components(List.of(components));
}
@CustomType.Setter
public Builder provisioningState(String provisioningState) {
if (provisioningState == null) {
throw new MissingRequiredPropertyException("ApplicationLiveViewPropertiesResponse", "provisioningState");
}
this.provisioningState = provisioningState;
return this;
}
public ApplicationLiveViewPropertiesResponse build() {
final var _resultValue = new ApplicationLiveViewPropertiesResponse();
_resultValue.components = components;
_resultValue.provisioningState = provisioningState;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy