com.pulumi.github.inputs.OrganizationRulesetConditionsRepositoryNameArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of github Show documentation
Show all versions of github Show documentation
A Pulumi package for creating and managing github cloud 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.github.inputs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
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 OrganizationRulesetConditionsRepositoryNameArgs extends com.pulumi.resources.ResourceArgs {
public static final OrganizationRulesetConditionsRepositoryNameArgs Empty = new OrganizationRulesetConditionsRepositoryNameArgs();
/**
* Array of repository names or patterns to exclude. The condition will not pass if any of these patterns match.
*
*/
@Import(name="excludes", required=true)
private Output> excludes;
/**
* @return Array of repository names or patterns to exclude. The condition will not pass if any of these patterns match.
*
*/
public Output> excludes() {
return this.excludes;
}
/**
* Array of repository names or patterns to include. One of these patterns must match for the condition to pass. Also accepts `~ALL` to include all repositories.
*
*/
@Import(name="includes", required=true)
private Output> includes;
/**
* @return Array of repository names or patterns to include. One of these patterns must match for the condition to pass. Also accepts `~ALL` to include all repositories.
*
*/
public Output> includes() {
return this.includes;
}
/**
* Whether renaming of target repositories is prevented.
*
*/
@Import(name="protected")
private @Nullable Output protected_;
/**
* @return Whether renaming of target repositories is prevented.
*
*/
public Optional