
com.pulumi.azurenative.web.outputs.GetWebAppSwiftVirtualNetworkConnectionResult 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.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Boolean;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class GetWebAppSwiftVirtualNetworkConnectionResult {
/**
* @return Resource Id.
*
*/
private String id;
/**
* @return Kind of resource.
*
*/
private @Nullable String kind;
/**
* @return Resource Name.
*
*/
private String name;
/**
* @return The Virtual Network subnet's resource ID. This is the subnet that this Web App will join. This subnet must have a delegation to Microsoft.Web/serverFarms defined first.
*
*/
private @Nullable String subnetResourceId;
/**
* @return A flag that specifies if the scale unit this Web App is on supports Swift integration.
*
*/
private @Nullable Boolean swiftSupported;
/**
* @return Resource type.
*
*/
private String type;
private GetWebAppSwiftVirtualNetworkConnectionResult() {}
/**
* @return Resource Id.
*
*/
public String id() {
return this.id;
}
/**
* @return Kind of resource.
*
*/
public Optional kind() {
return Optional.ofNullable(this.kind);
}
/**
* @return Resource Name.
*
*/
public String name() {
return this.name;
}
/**
* @return The Virtual Network subnet's resource ID. This is the subnet that this Web App will join. This subnet must have a delegation to Microsoft.Web/serverFarms defined first.
*
*/
public Optional subnetResourceId() {
return Optional.ofNullable(this.subnetResourceId);
}
/**
* @return A flag that specifies if the scale unit this Web App is on supports Swift integration.
*
*/
public Optional swiftSupported() {
return Optional.ofNullable(this.swiftSupported);
}
/**
* @return Resource type.
*
*/
public String type() {
return this.type;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetWebAppSwiftVirtualNetworkConnectionResult defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String id;
private @Nullable String kind;
private String name;
private @Nullable String subnetResourceId;
private @Nullable Boolean swiftSupported;
private String type;
public Builder() {}
public Builder(GetWebAppSwiftVirtualNetworkConnectionResult defaults) {
Objects.requireNonNull(defaults);
this.id = defaults.id;
this.kind = defaults.kind;
this.name = defaults.name;
this.subnetResourceId = defaults.subnetResourceId;
this.swiftSupported = defaults.swiftSupported;
this.type = defaults.type;
}
@CustomType.Setter
public Builder id(String id) {
if (id == null) {
throw new MissingRequiredPropertyException("GetWebAppSwiftVirtualNetworkConnectionResult", "id");
}
this.id = id;
return this;
}
@CustomType.Setter
public Builder kind(@Nullable String kind) {
this.kind = kind;
return this;
}
@CustomType.Setter
public Builder name(String name) {
if (name == null) {
throw new MissingRequiredPropertyException("GetWebAppSwiftVirtualNetworkConnectionResult", "name");
}
this.name = name;
return this;
}
@CustomType.Setter
public Builder subnetResourceId(@Nullable String subnetResourceId) {
this.subnetResourceId = subnetResourceId;
return this;
}
@CustomType.Setter
public Builder swiftSupported(@Nullable Boolean swiftSupported) {
this.swiftSupported = swiftSupported;
return this;
}
@CustomType.Setter
public Builder type(String type) {
if (type == null) {
throw new MissingRequiredPropertyException("GetWebAppSwiftVirtualNetworkConnectionResult", "type");
}
this.type = type;
return this;
}
public GetWebAppSwiftVirtualNetworkConnectionResult build() {
final var _resultValue = new GetWebAppSwiftVirtualNetworkConnectionResult();
_resultValue.id = id;
_resultValue.kind = kind;
_resultValue.name = name;
_resultValue.subnetResourceId = subnetResourceId;
_resultValue.swiftSupported = swiftSupported;
_resultValue.type = type;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy