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