ProjectColumn

class ProjectColumn : KotlinCustomResource

This resource allows you to create and manage columns for GitHub projects.

Example Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.github.OrganizationProject;
import com.pulumi.github.OrganizationProjectArgs;
import com.pulumi.github.ProjectColumn;
import com.pulumi.github.ProjectColumnArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var project = new OrganizationProject("project", OrganizationProjectArgs.builder()
.body("This is an organization project.")
.build());
var column = new ProjectColumn("column", ProjectColumnArgs.builder()
.projectId(project.id())
.build());
}
}

Properties

Link copied to clipboard
val columnId: Output<Int>

The ID of the column.

Link copied to clipboard
val etag: Output<String>
Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val name: Output<String>

The name of the column.

Link copied to clipboard
val projectId: Output<String>

The ID of an existing project that the column will be created in.

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val urn: Output<String>