com.pulumi.azurenative.azurestackhci.outputs.VirtualNetworkStatusResponseProvisioningStatus 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.azurestackhci.outputs;
import com.pulumi.core.annotations.CustomType;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class VirtualNetworkStatusResponseProvisioningStatus {
/**
* @return The ID of the operation performed on the virtual network
*
*/
private @Nullable String operationId;
/**
* @return The status of the operation performed on the virtual network [Succeeded, Failed, InProgress]
*
*/
private @Nullable String status;
private VirtualNetworkStatusResponseProvisioningStatus() {}
/**
* @return The ID of the operation performed on the virtual network
*
*/
public Optional operationId() {
return Optional.ofNullable(this.operationId);
}
/**
* @return The status of the operation performed on the virtual network [Succeeded, Failed, InProgress]
*
*/
public Optional status() {
return Optional.ofNullable(this.status);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(VirtualNetworkStatusResponseProvisioningStatus defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String operationId;
private @Nullable String status;
public Builder() {}
public Builder(VirtualNetworkStatusResponseProvisioningStatus defaults) {
Objects.requireNonNull(defaults);
this.operationId = defaults.operationId;
this.status = defaults.status;
}
@CustomType.Setter
public Builder operationId(@Nullable String operationId) {
this.operationId = operationId;
return this;
}
@CustomType.Setter
public Builder status(@Nullable String status) {
this.status = status;
return this;
}
public VirtualNetworkStatusResponseProvisioningStatus build() {
final var _resultValue = new VirtualNetworkStatusResponseProvisioningStatus();
_resultValue.operationId = operationId;
_resultValue.status = status;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy