
com.pulumi.azurenative.web.outputs.ConnectionGatewayDefinitionResponseProperties Maven / Gradle / Ivy
// *** 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.web.outputs;
import com.pulumi.azurenative.web.outputs.ConnectionGatewayReferenceResponse;
import com.pulumi.core.annotations.CustomType;
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 ConnectionGatewayDefinitionResponseProperties {
/**
* @return The URI of the backend
*
*/
private @Nullable String backendUri;
/**
* @return The gateway installation reference
*
*/
private @Nullable ConnectionGatewayReferenceResponse connectionGatewayInstallation;
/**
* @return The gateway admin
*
*/
private @Nullable List contactInformation;
/**
* @return The gateway description
*
*/
private @Nullable String description;
/**
* @return The gateway display name
*
*/
private @Nullable String displayName;
/**
* @return The machine name of the gateway
*
*/
private @Nullable String machineName;
/**
* @return The gateway status
*
*/
private @Nullable Object status;
private ConnectionGatewayDefinitionResponseProperties() {}
/**
* @return The URI of the backend
*
*/
public Optional backendUri() {
return Optional.ofNullable(this.backendUri);
}
/**
* @return The gateway installation reference
*
*/
public Optional connectionGatewayInstallation() {
return Optional.ofNullable(this.connectionGatewayInstallation);
}
/**
* @return The gateway admin
*
*/
public List contactInformation() {
return this.contactInformation == null ? List.of() : this.contactInformation;
}
/**
* @return The gateway description
*
*/
public Optional description() {
return Optional.ofNullable(this.description);
}
/**
* @return The gateway display name
*
*/
public Optional displayName() {
return Optional.ofNullable(this.displayName);
}
/**
* @return The machine name of the gateway
*
*/
public Optional machineName() {
return Optional.ofNullable(this.machineName);
}
/**
* @return The gateway status
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy