com.pulumi.gitlab.inputs.GetProjectProtectedBranchesProtectedBranchPushAccessLevelArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gitlab Show documentation
Show all versions of gitlab Show documentation
A Pulumi package for creating and managing GitLab 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.gitlab.inputs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Integer;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class GetProjectProtectedBranchesProtectedBranchPushAccessLevelArgs extends com.pulumi.resources.ResourceArgs {
public static final GetProjectProtectedBranchesProtectedBranchPushAccessLevelArgs Empty = new GetProjectProtectedBranchesProtectedBranchPushAccessLevelArgs();
/**
* Access levels allowed to push to protected branch. Valid values are: `no one`, `developer`, `maintainer`.
*
*/
@Import(name="accessLevel", required=true)
private Output accessLevel;
/**
* @return Access levels allowed to push to protected branch. Valid values are: `no one`, `developer`, `maintainer`.
*
*/
public Output accessLevel() {
return this.accessLevel;
}
/**
* Readable description of access level.
*
*/
@Import(name="accessLevelDescription", required=true)
private Output accessLevelDescription;
/**
* @return Readable description of access level.
*
*/
public Output accessLevelDescription() {
return this.accessLevelDescription;
}
/**
* The ID of a GitLab group allowed to perform the relevant action. Mutually exclusive with `user_id`.
*
*/
@Import(name="groupId")
private @Nullable Output groupId;
/**
* @return The ID of a GitLab group allowed to perform the relevant action. Mutually exclusive with `user_id`.
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy