
com.pulumi.azurenative.loadtestservice.inputs.GetLoadTestMappingPlainArgs 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.loadtestservice.inputs;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class GetLoadTestMappingPlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetLoadTestMappingPlainArgs Empty = new GetLoadTestMappingPlainArgs();
/**
* Load Test Mapping name
*
*/
@Import(name="loadTestMappingName", required=true)
private String loadTestMappingName;
/**
* @return Load Test Mapping name
*
*/
public String loadTestMappingName() {
return this.loadTestMappingName;
}
/**
* The fully qualified Azure Resource manager identifier of the resource.
*
*/
@Import(name="resourceUri", required=true)
private String resourceUri;
/**
* @return The fully qualified Azure Resource manager identifier of the resource.
*
*/
public String resourceUri() {
return this.resourceUri;
}
private GetLoadTestMappingPlainArgs() {}
private GetLoadTestMappingPlainArgs(GetLoadTestMappingPlainArgs $) {
this.loadTestMappingName = $.loadTestMappingName;
this.resourceUri = $.resourceUri;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetLoadTestMappingPlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetLoadTestMappingPlainArgs $;
public Builder() {
$ = new GetLoadTestMappingPlainArgs();
}
public Builder(GetLoadTestMappingPlainArgs defaults) {
$ = new GetLoadTestMappingPlainArgs(Objects.requireNonNull(defaults));
}
/**
* @param loadTestMappingName Load Test Mapping name
*
* @return builder
*
*/
public Builder loadTestMappingName(String loadTestMappingName) {
$.loadTestMappingName = loadTestMappingName;
return this;
}
/**
* @param resourceUri The fully qualified Azure Resource manager identifier of the resource.
*
* @return builder
*
*/
public Builder resourceUri(String resourceUri) {
$.resourceUri = resourceUri;
return this;
}
public GetLoadTestMappingPlainArgs build() {
if ($.loadTestMappingName == null) {
throw new MissingRequiredPropertyException("GetLoadTestMappingPlainArgs", "loadTestMappingName");
}
if ($.resourceUri == null) {
throw new MissingRequiredPropertyException("GetLoadTestMappingPlainArgs", "resourceUri");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy