com.pulumi.gitlab.inputs.GetGroupHooksPlainArgs 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.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class GetGroupHooksPlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetGroupHooksPlainArgs Empty = new GetGroupHooksPlainArgs();
/**
* The ID or full path of the group.
*
*/
@Import(name="group", required=true)
private String group;
/**
* @return The ID or full path of the group.
*
*/
public String group() {
return this.group;
}
private GetGroupHooksPlainArgs() {}
private GetGroupHooksPlainArgs(GetGroupHooksPlainArgs $) {
this.group = $.group;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetGroupHooksPlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetGroupHooksPlainArgs $;
public Builder() {
$ = new GetGroupHooksPlainArgs();
}
public Builder(GetGroupHooksPlainArgs defaults) {
$ = new GetGroupHooksPlainArgs(Objects.requireNonNull(defaults));
}
/**
* @param group The ID or full path of the group.
*
* @return builder
*
*/
public Builder group(String group) {
$.group = group;
return this;
}
public GetGroupHooksPlainArgs build() {
if ($.group == null) {
throw new MissingRequiredPropertyException("GetGroupHooksPlainArgs", "group");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy