
com.pulumi.azurenative.customproviders.inputs.CustomRPValidationsArgs 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.customproviders.inputs;
import com.pulumi.azurenative.customproviders.enums.ValidationType;
import com.pulumi.core.Either;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
/**
* A validation to apply on custom resource provider requests.
*
*/
public final class CustomRPValidationsArgs extends com.pulumi.resources.ResourceArgs {
public static final CustomRPValidationsArgs Empty = new CustomRPValidationsArgs();
/**
* A link to the validation specification. The specification must be hosted on raw.githubusercontent.com.
*
*/
@Import(name="specification", required=true)
private Output specification;
/**
* @return A link to the validation specification. The specification must be hosted on raw.githubusercontent.com.
*
*/
public Output specification() {
return this.specification;
}
/**
* The type of validation to run against a matching request.
*
*/
@Import(name="validationType")
private @Nullable Output> validationType;
/**
* @return The type of validation to run against a matching request.
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy