
com.pulumi.azurenative.hybridnetwork.inputs.GetSiteNetworkServicePlainArgs 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.hybridnetwork.inputs;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class GetSiteNetworkServicePlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetSiteNetworkServicePlainArgs Empty = new GetSiteNetworkServicePlainArgs();
/**
* The name of the resource group. The name is case insensitive.
*
*/
@Import(name="resourceGroupName", required=true)
private String resourceGroupName;
/**
* @return The name of the resource group. The name is case insensitive.
*
*/
public String resourceGroupName() {
return this.resourceGroupName;
}
/**
* The name of the site network service.
*
*/
@Import(name="siteNetworkServiceName", required=true)
private String siteNetworkServiceName;
/**
* @return The name of the site network service.
*
*/
public String siteNetworkServiceName() {
return this.siteNetworkServiceName;
}
private GetSiteNetworkServicePlainArgs() {}
private GetSiteNetworkServicePlainArgs(GetSiteNetworkServicePlainArgs $) {
this.resourceGroupName = $.resourceGroupName;
this.siteNetworkServiceName = $.siteNetworkServiceName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetSiteNetworkServicePlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetSiteNetworkServicePlainArgs $;
public Builder() {
$ = new GetSiteNetworkServicePlainArgs();
}
public Builder(GetSiteNetworkServicePlainArgs defaults) {
$ = new GetSiteNetworkServicePlainArgs(Objects.requireNonNull(defaults));
}
/**
* @param resourceGroupName The name of the resource group. The name is case insensitive.
*
* @return builder
*
*/
public Builder resourceGroupName(String resourceGroupName) {
$.resourceGroupName = resourceGroupName;
return this;
}
/**
* @param siteNetworkServiceName The name of the site network service.
*
* @return builder
*
*/
public Builder siteNetworkServiceName(String siteNetworkServiceName) {
$.siteNetworkServiceName = siteNetworkServiceName;
return this;
}
public GetSiteNetworkServicePlainArgs build() {
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("GetSiteNetworkServicePlainArgs", "resourceGroupName");
}
if ($.siteNetworkServiceName == null) {
throw new MissingRequiredPropertyException("GetSiteNetworkServicePlainArgs", "siteNetworkServiceName");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy