
com.pulumi.azurenative.servicelinker.inputs.GetLinkerArgs 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.servicelinker.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 GetLinkerArgs extends com.pulumi.resources.InvokeArgs {
public static final GetLinkerArgs Empty = new GetLinkerArgs();
/**
* The name Linker resource.
*
*/
@Import(name="linkerName", required=true)
private Output linkerName;
/**
* @return The name Linker resource.
*
*/
public Output linkerName() {
return this.linkerName;
}
/**
* The fully qualified Azure Resource manager identifier of the resource to be connected.
*
*/
@Import(name="resourceUri", required=true)
private Output resourceUri;
/**
* @return The fully qualified Azure Resource manager identifier of the resource to be connected.
*
*/
public Output resourceUri() {
return this.resourceUri;
}
private GetLinkerArgs() {}
private GetLinkerArgs(GetLinkerArgs $) {
this.linkerName = $.linkerName;
this.resourceUri = $.resourceUri;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetLinkerArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetLinkerArgs $;
public Builder() {
$ = new GetLinkerArgs();
}
public Builder(GetLinkerArgs defaults) {
$ = new GetLinkerArgs(Objects.requireNonNull(defaults));
}
/**
* @param linkerName The name Linker resource.
*
* @return builder
*
*/
public Builder linkerName(Output linkerName) {
$.linkerName = linkerName;
return this;
}
/**
* @param linkerName The name Linker resource.
*
* @return builder
*
*/
public Builder linkerName(String linkerName) {
return linkerName(Output.of(linkerName));
}
/**
* @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
*
* @return builder
*
*/
public Builder resourceUri(Output resourceUri) {
$.resourceUri = resourceUri;
return this;
}
/**
* @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
*
* @return builder
*
*/
public Builder resourceUri(String resourceUri) {
return resourceUri(Output.of(resourceUri));
}
public GetLinkerArgs build() {
if ($.linkerName == null) {
throw new MissingRequiredPropertyException("GetLinkerArgs", "linkerName");
}
if ($.resourceUri == null) {
throw new MissingRequiredPropertyException("GetLinkerArgs", "resourceUri");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy