com.pulumi.azurenative.testbase.inputs.GetTestResultVideoDownloadURLPlainArgs 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.testbase.inputs;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class GetTestResultVideoDownloadURLPlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetTestResultVideoDownloadURLPlainArgs Empty = new GetTestResultVideoDownloadURLPlainArgs();
/**
* The resource name of the Test Base Package.
*
*/
@Import(name="packageName", required=true)
private String packageName;
/**
* @return The resource name of the Test Base Package.
*
*/
public String packageName() {
return this.packageName;
}
/**
* The name of the resource group that contains the resource.
*
*/
@Import(name="resourceGroupName", required=true)
private String resourceGroupName;
/**
* @return The name of the resource group that contains the resource.
*
*/
public String resourceGroupName() {
return this.resourceGroupName;
}
/**
* The resource name of the Test Base Account.
*
*/
@Import(name="testBaseAccountName", required=true)
private String testBaseAccountName;
/**
* @return The resource name of the Test Base Account.
*
*/
public String testBaseAccountName() {
return this.testBaseAccountName;
}
/**
* The Test Result Name. It equals to TestResult-{TestResultId} string.
*
*/
@Import(name="testResultName", required=true)
private String testResultName;
/**
* @return The Test Result Name. It equals to TestResult-{TestResultId} string.
*
*/
public String testResultName() {
return this.testResultName;
}
private GetTestResultVideoDownloadURLPlainArgs() {}
private GetTestResultVideoDownloadURLPlainArgs(GetTestResultVideoDownloadURLPlainArgs $) {
this.packageName = $.packageName;
this.resourceGroupName = $.resourceGroupName;
this.testBaseAccountName = $.testBaseAccountName;
this.testResultName = $.testResultName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetTestResultVideoDownloadURLPlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetTestResultVideoDownloadURLPlainArgs $;
public Builder() {
$ = new GetTestResultVideoDownloadURLPlainArgs();
}
public Builder(GetTestResultVideoDownloadURLPlainArgs defaults) {
$ = new GetTestResultVideoDownloadURLPlainArgs(Objects.requireNonNull(defaults));
}
/**
* @param packageName The resource name of the Test Base Package.
*
* @return builder
*
*/
public Builder packageName(String packageName) {
$.packageName = packageName;
return this;
}
/**
* @param resourceGroupName The name of the resource group that contains the resource.
*
* @return builder
*
*/
public Builder resourceGroupName(String resourceGroupName) {
$.resourceGroupName = resourceGroupName;
return this;
}
/**
* @param testBaseAccountName The resource name of the Test Base Account.
*
* @return builder
*
*/
public Builder testBaseAccountName(String testBaseAccountName) {
$.testBaseAccountName = testBaseAccountName;
return this;
}
/**
* @param testResultName The Test Result Name. It equals to TestResult-{TestResultId} string.
*
* @return builder
*
*/
public Builder testResultName(String testResultName) {
$.testResultName = testResultName;
return this;
}
public GetTestResultVideoDownloadURLPlainArgs build() {
if ($.packageName == null) {
throw new MissingRequiredPropertyException("GetTestResultVideoDownloadURLPlainArgs", "packageName");
}
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("GetTestResultVideoDownloadURLPlainArgs", "resourceGroupName");
}
if ($.testBaseAccountName == null) {
throw new MissingRequiredPropertyException("GetTestResultVideoDownloadURLPlainArgs", "testBaseAccountName");
}
if ($.testResultName == null) {
throw new MissingRequiredPropertyException("GetTestResultVideoDownloadURLPlainArgs", "testResultName");
}
return $;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy