com.pulumi.azure.appservice.WebAppHybridConnectionArgs 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.azure.appservice;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Integer;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class WebAppHybridConnectionArgs extends com.pulumi.resources.ResourceArgs {
public static final WebAppHybridConnectionArgs Empty = new WebAppHybridConnectionArgs();
/**
* The hostname of the endpoint.
*
*/
@Import(name="hostname", required=true)
private Output hostname;
/**
* @return The hostname of the endpoint.
*
*/
public Output hostname() {
return this.hostname;
}
/**
* The port to use for the endpoint.
*
*/
@Import(name="port", required=true)
private Output port;
/**
* @return The port to use for the endpoint.
*
*/
public Output port() {
return this.port;
}
/**
* The ID of the Relay Hybrid Connection to use. Changing this forces a new resource to be created.
*
*/
@Import(name="relayId", required=true)
private Output relayId;
/**
* @return The ID of the Relay Hybrid Connection to use. Changing this forces a new resource to be created.
*
*/
public Output relayId() {
return this.relayId;
}
/**
* The name of the Relay key with `Send` permission to use. Defaults to `RootManageSharedAccessKey`
*
*/
@Import(name="sendKeyName")
private @Nullable Output sendKeyName;
/**
* @return The name of the Relay key with `Send` permission to use. Defaults to `RootManageSharedAccessKey`
*
*/
public Optional