
com.pulumi.azurenative.network.outputs.NetworkManagerDeploymentStatusResponse 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.network.outputs;
import com.pulumi.core.annotations.CustomType;
import java.lang.String;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class NetworkManagerDeploymentStatusResponse {
/**
* @return Commit Time.
*
*/
private @Nullable String commitTime;
/**
* @return List of configuration ids.
*
*/
private @Nullable List configurationIds;
/**
* @return Deployment Status.
*
*/
private @Nullable String deploymentStatus;
/**
* @return Configuration Deployment Type.
*
*/
private @Nullable String deploymentType;
/**
* @return Error Message.
*
*/
private @Nullable String errorMessage;
/**
* @return Region Name.
*
*/
private @Nullable String region;
private NetworkManagerDeploymentStatusResponse() {}
/**
* @return Commit Time.
*
*/
public Optional commitTime() {
return Optional.ofNullable(this.commitTime);
}
/**
* @return List of configuration ids.
*
*/
public List configurationIds() {
return this.configurationIds == null ? List.of() : this.configurationIds;
}
/**
* @return Deployment Status.
*
*/
public Optional deploymentStatus() {
return Optional.ofNullable(this.deploymentStatus);
}
/**
* @return Configuration Deployment Type.
*
*/
public Optional deploymentType() {
return Optional.ofNullable(this.deploymentType);
}
/**
* @return Error Message.
*
*/
public Optional errorMessage() {
return Optional.ofNullable(this.errorMessage);
}
/**
* @return Region Name.
*
*/
public Optional region() {
return Optional.ofNullable(this.region);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(NetworkManagerDeploymentStatusResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String commitTime;
private @Nullable List configurationIds;
private @Nullable String deploymentStatus;
private @Nullable String deploymentType;
private @Nullable String errorMessage;
private @Nullable String region;
public Builder() {}
public Builder(NetworkManagerDeploymentStatusResponse defaults) {
Objects.requireNonNull(defaults);
this.commitTime = defaults.commitTime;
this.configurationIds = defaults.configurationIds;
this.deploymentStatus = defaults.deploymentStatus;
this.deploymentType = defaults.deploymentType;
this.errorMessage = defaults.errorMessage;
this.region = defaults.region;
}
@CustomType.Setter
public Builder commitTime(@Nullable String commitTime) {
this.commitTime = commitTime;
return this;
}
@CustomType.Setter
public Builder configurationIds(@Nullable List configurationIds) {
this.configurationIds = configurationIds;
return this;
}
public Builder configurationIds(String... configurationIds) {
return configurationIds(List.of(configurationIds));
}
@CustomType.Setter
public Builder deploymentStatus(@Nullable String deploymentStatus) {
this.deploymentStatus = deploymentStatus;
return this;
}
@CustomType.Setter
public Builder deploymentType(@Nullable String deploymentType) {
this.deploymentType = deploymentType;
return this;
}
@CustomType.Setter
public Builder errorMessage(@Nullable String errorMessage) {
this.errorMessage = errorMessage;
return this;
}
@CustomType.Setter
public Builder region(@Nullable String region) {
this.region = region;
return this;
}
public NetworkManagerDeploymentStatusResponse build() {
final var _resultValue = new NetworkManagerDeploymentStatusResponse();
_resultValue.commitTime = commitTime;
_resultValue.configurationIds = configurationIds;
_resultValue.deploymentStatus = deploymentStatus;
_resultValue.deploymentType = deploymentType;
_resultValue.errorMessage = errorMessage;
_resultValue.region = region;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy