
com.pulumi.azurenative.web.inputs.GetWebAppRelayServiceConnectionPlainArgs 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.web.inputs;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class GetWebAppRelayServiceConnectionPlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetWebAppRelayServiceConnectionPlainArgs Empty = new GetWebAppRelayServiceConnectionPlainArgs();
/**
* Name of the hybrid connection.
*
*/
@Import(name="entityName", required=true)
private String entityName;
/**
* @return Name of the hybrid connection.
*
*/
public String entityName() {
return this.entityName;
}
/**
* Name of the app.
*
*/
@Import(name="name", required=true)
private String name;
/**
* @return Name of the app.
*
*/
public String name() {
return this.name;
}
/**
* Name of the resource group to which the resource belongs.
*
*/
@Import(name="resourceGroupName", required=true)
private String resourceGroupName;
/**
* @return Name of the resource group to which the resource belongs.
*
*/
public String resourceGroupName() {
return this.resourceGroupName;
}
private GetWebAppRelayServiceConnectionPlainArgs() {}
private GetWebAppRelayServiceConnectionPlainArgs(GetWebAppRelayServiceConnectionPlainArgs $) {
this.entityName = $.entityName;
this.name = $.name;
this.resourceGroupName = $.resourceGroupName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetWebAppRelayServiceConnectionPlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetWebAppRelayServiceConnectionPlainArgs $;
public Builder() {
$ = new GetWebAppRelayServiceConnectionPlainArgs();
}
public Builder(GetWebAppRelayServiceConnectionPlainArgs defaults) {
$ = new GetWebAppRelayServiceConnectionPlainArgs(Objects.requireNonNull(defaults));
}
/**
* @param entityName Name of the hybrid connection.
*
* @return builder
*
*/
public Builder entityName(String entityName) {
$.entityName = entityName;
return this;
}
/**
* @param name Name of the app.
*
* @return builder
*
*/
public Builder name(String name) {
$.name = name;
return this;
}
/**
* @param resourceGroupName Name of the resource group to which the resource belongs.
*
* @return builder
*
*/
public Builder resourceGroupName(String resourceGroupName) {
$.resourceGroupName = resourceGroupName;
return this;
}
public GetWebAppRelayServiceConnectionPlainArgs build() {
if ($.entityName == null) {
throw new MissingRequiredPropertyException("GetWebAppRelayServiceConnectionPlainArgs", "entityName");
}
if ($.name == null) {
throw new MissingRequiredPropertyException("GetWebAppRelayServiceConnectionPlainArgs", "name");
}
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("GetWebAppRelayServiceConnectionPlainArgs", "resourceGroupName");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy