
com.pulumi.scm.DecryptionRuleArgs 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.scm;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import com.pulumi.scm.inputs.DecryptionRuleTypeArgs;
import java.lang.Boolean;
import java.lang.String;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class DecryptionRuleArgs extends com.pulumi.resources.ResourceArgs {
public static final DecryptionRuleArgs Empty = new DecryptionRuleArgs();
/**
* The Action param. String must be one of these: `"decrypt"`, `"no-decrypt"`.
*
*/
@Import(name="action", required=true)
private Output action;
/**
* @return The Action param. String must be one of these: `"decrypt"`, `"no-decrypt"`.
*
*/
public Output action() {
return this.action;
}
/**
* The Categories param.
*
*/
@Import(name="categories", required=true)
private Output> categories;
/**
* @return The Categories param.
*
*/
public Output> categories() {
return this.categories;
}
/**
* The Description param.
*
*/
@Import(name="description")
private @Nullable Output description;
/**
* @return The Description param.
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy