
com.pulumi.azurenative.hybridnetwork.inputs.GetNetworkServiceDesignVersionArgs 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.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class GetNetworkServiceDesignVersionArgs extends com.pulumi.resources.InvokeArgs {
public static final GetNetworkServiceDesignVersionArgs Empty = new GetNetworkServiceDesignVersionArgs();
/**
* The name of the network service design group.
*
*/
@Import(name="networkServiceDesignGroupName", required=true)
private Output networkServiceDesignGroupName;
/**
* @return The name of the network service design group.
*
*/
public Output networkServiceDesignGroupName() {
return this.networkServiceDesignGroupName;
}
/**
* The name of the network service design version. The name should conform to the SemVer 2.0.0 specification: https://semver.org/spec/v2.0.0.html.
*
*/
@Import(name="networkServiceDesignVersionName", required=true)
private Output networkServiceDesignVersionName;
/**
* @return The name of the network service design version. The name should conform to the SemVer 2.0.0 specification: https://semver.org/spec/v2.0.0.html.
*
*/
public Output networkServiceDesignVersionName() {
return this.networkServiceDesignVersionName;
}
/**
* The name of the publisher.
*
*/
@Import(name="publisherName", required=true)
private Output publisherName;
/**
* @return The name of the publisher.
*
*/
public Output publisherName() {
return this.publisherName;
}
/**
* The name of the resource group. The name is case insensitive.
*
*/
@Import(name="resourceGroupName", required=true)
private Output resourceGroupName;
/**
* @return The name of the resource group. The name is case insensitive.
*
*/
public Output resourceGroupName() {
return this.resourceGroupName;
}
private GetNetworkServiceDesignVersionArgs() {}
private GetNetworkServiceDesignVersionArgs(GetNetworkServiceDesignVersionArgs $) {
this.networkServiceDesignGroupName = $.networkServiceDesignGroupName;
this.networkServiceDesignVersionName = $.networkServiceDesignVersionName;
this.publisherName = $.publisherName;
this.resourceGroupName = $.resourceGroupName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetNetworkServiceDesignVersionArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetNetworkServiceDesignVersionArgs $;
public Builder() {
$ = new GetNetworkServiceDesignVersionArgs();
}
public Builder(GetNetworkServiceDesignVersionArgs defaults) {
$ = new GetNetworkServiceDesignVersionArgs(Objects.requireNonNull(defaults));
}
/**
* @param networkServiceDesignGroupName The name of the network service design group.
*
* @return builder
*
*/
public Builder networkServiceDesignGroupName(Output networkServiceDesignGroupName) {
$.networkServiceDesignGroupName = networkServiceDesignGroupName;
return this;
}
/**
* @param networkServiceDesignGroupName The name of the network service design group.
*
* @return builder
*
*/
public Builder networkServiceDesignGroupName(String networkServiceDesignGroupName) {
return networkServiceDesignGroupName(Output.of(networkServiceDesignGroupName));
}
/**
* @param networkServiceDesignVersionName The name of the network service design version. The name should conform to the SemVer 2.0.0 specification: https://semver.org/spec/v2.0.0.html.
*
* @return builder
*
*/
public Builder networkServiceDesignVersionName(Output networkServiceDesignVersionName) {
$.networkServiceDesignVersionName = networkServiceDesignVersionName;
return this;
}
/**
* @param networkServiceDesignVersionName The name of the network service design version. The name should conform to the SemVer 2.0.0 specification: https://semver.org/spec/v2.0.0.html.
*
* @return builder
*
*/
public Builder networkServiceDesignVersionName(String networkServiceDesignVersionName) {
return networkServiceDesignVersionName(Output.of(networkServiceDesignVersionName));
}
/**
* @param publisherName The name of the publisher.
*
* @return builder
*
*/
public Builder publisherName(Output publisherName) {
$.publisherName = publisherName;
return this;
}
/**
* @param publisherName The name of the publisher.
*
* @return builder
*
*/
public Builder publisherName(String publisherName) {
return publisherName(Output.of(publisherName));
}
/**
* @param resourceGroupName The name of the resource group. The name is case insensitive.
*
* @return builder
*
*/
public Builder resourceGroupName(Output resourceGroupName) {
$.resourceGroupName = resourceGroupName;
return this;
}
/**
* @param resourceGroupName The name of the resource group. The name is case insensitive.
*
* @return builder
*
*/
public Builder resourceGroupName(String resourceGroupName) {
return resourceGroupName(Output.of(resourceGroupName));
}
public GetNetworkServiceDesignVersionArgs build() {
if ($.networkServiceDesignGroupName == null) {
throw new MissingRequiredPropertyException("GetNetworkServiceDesignVersionArgs", "networkServiceDesignGroupName");
}
if ($.networkServiceDesignVersionName == null) {
throw new MissingRequiredPropertyException("GetNetworkServiceDesignVersionArgs", "networkServiceDesignVersionName");
}
if ($.publisherName == null) {
throw new MissingRequiredPropertyException("GetNetworkServiceDesignVersionArgs", "publisherName");
}
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("GetNetworkServiceDesignVersionArgs", "resourceGroupName");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy