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