
com.pulumi.azurenative.portal.outputs.ConsolePropertiesResponse 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.portal.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class ConsolePropertiesResponse {
/**
* @return The operating system type of the cloud shell.
*
*/
private String osType;
/**
* @return Provisioning state of the console.
*
*/
private String provisioningState;
/**
* @return Uri of the console.
*
*/
private String uri;
private ConsolePropertiesResponse() {}
/**
* @return The operating system type of the cloud shell.
*
*/
public String osType() {
return this.osType;
}
/**
* @return Provisioning state of the console.
*
*/
public String provisioningState() {
return this.provisioningState;
}
/**
* @return Uri of the console.
*
*/
public String uri() {
return this.uri;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ConsolePropertiesResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String osType;
private String provisioningState;
private String uri;
public Builder() {}
public Builder(ConsolePropertiesResponse defaults) {
Objects.requireNonNull(defaults);
this.osType = defaults.osType;
this.provisioningState = defaults.provisioningState;
this.uri = defaults.uri;
}
@CustomType.Setter
public Builder osType(String osType) {
if (osType == null) {
throw new MissingRequiredPropertyException("ConsolePropertiesResponse", "osType");
}
this.osType = osType;
return this;
}
@CustomType.Setter
public Builder provisioningState(String provisioningState) {
if (provisioningState == null) {
throw new MissingRequiredPropertyException("ConsolePropertiesResponse", "provisioningState");
}
this.provisioningState = provisioningState;
return this;
}
@CustomType.Setter
public Builder uri(String uri) {
if (uri == null) {
throw new MissingRequiredPropertyException("ConsolePropertiesResponse", "uri");
}
this.uri = uri;
return this;
}
public ConsolePropertiesResponse build() {
final var _resultValue = new ConsolePropertiesResponse();
_resultValue.osType = osType;
_resultValue.provisioningState = provisioningState;
_resultValue.uri = uri;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy