gitlab.ProjectIntegrationCustomIssueTracker
Explore with Pulumi AI
The gitlab.ProjectIntegrationCustomIssueTracker
resource manages the lifecycle of a project integration with a Custom Issue Tracker.
Upstream API: GitLab REST API docs
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as gitlab from "@pulumi/gitlab";
const awesomeProject = new gitlab.Project("awesome_project", {
name: "awesome_project",
description: "My awesome project.",
visibilityLevel: "public",
});
const tracker = new gitlab.ProjectIntegrationCustomIssueTracker("tracker", {
project: awesomeProject.id,
projectUrl: "https://customtracker.com/issues",
issuesUrl: "https://customtracker.com/TEST-:id",
});
import pulumi
import pulumi_gitlab as gitlab
awesome_project = gitlab.Project("awesome_project",
name="awesome_project",
description="My awesome project.",
visibility_level="public")
tracker = gitlab.ProjectIntegrationCustomIssueTracker("tracker",
project=awesome_project.id,
project_url="https://customtracker.com/issues",
issues_url="https://customtracker.com/TEST-:id")
package main
import (
"github.com/pulumi/pulumi-gitlab/sdk/v9/go/gitlab"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
awesomeProject, err := gitlab.NewProject(ctx, "awesome_project", &gitlab.ProjectArgs{
Name: pulumi.String("awesome_project"),
Description: pulumi.String("My awesome project."),
VisibilityLevel: pulumi.String("public"),
})
if err != nil {
return err
}
_, err = gitlab.NewProjectIntegrationCustomIssueTracker(ctx, "tracker", &gitlab.ProjectIntegrationCustomIssueTrackerArgs{
Project: awesomeProject.ID(),
ProjectUrl: pulumi.String("https://customtracker.com/issues"),
IssuesUrl: pulumi.String("https://customtracker.com/TEST-:id"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using GitLab = Pulumi.GitLab;
return await Deployment.RunAsync(() =>
{
var awesomeProject = new GitLab.Project("awesome_project", new()
{
Name = "awesome_project",
Description = "My awesome project.",
VisibilityLevel = "public",
});
var tracker = new GitLab.ProjectIntegrationCustomIssueTracker("tracker", new()
{
Project = awesomeProject.Id,
ProjectUrl = "https://customtracker.com/issues",
IssuesUrl = "https://customtracker.com/TEST-:id",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gitlab.Project;
import com.pulumi.gitlab.ProjectArgs;
import com.pulumi.gitlab.ProjectIntegrationCustomIssueTracker;
import com.pulumi.gitlab.ProjectIntegrationCustomIssueTrackerArgs;
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 awesomeProject = new Project("awesomeProject", ProjectArgs.builder()
.name("awesome_project")
.description("My awesome project.")
.visibilityLevel("public")
.build());
var tracker = new ProjectIntegrationCustomIssueTracker("tracker", ProjectIntegrationCustomIssueTrackerArgs.builder()
.project(awesomeProject.id())
.projectUrl("https://customtracker.com/issues")
.issuesUrl("https://customtracker.com/TEST-:id")
.build());
}
}
resources:
awesomeProject:
type: gitlab:Project
name: awesome_project
properties:
name: awesome_project
description: My awesome project.
visibilityLevel: public
tracker:
type: gitlab:ProjectIntegrationCustomIssueTracker
properties:
project: ${awesomeProject.id}
projectUrl: https://customtracker.com/issues
issuesUrl: https://customtracker.com/TEST-:id
Create ProjectIntegrationCustomIssueTracker Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ProjectIntegrationCustomIssueTracker(name: string, args: ProjectIntegrationCustomIssueTrackerArgs, opts?: CustomResourceOptions);
@overload
def ProjectIntegrationCustomIssueTracker(resource_name: str,
args: ProjectIntegrationCustomIssueTrackerArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ProjectIntegrationCustomIssueTracker(resource_name: str,
opts: Optional[ResourceOptions] = None,
issues_url: Optional[str] = None,
project: Optional[str] = None,
project_url: Optional[str] = None)
func NewProjectIntegrationCustomIssueTracker(ctx *Context, name string, args ProjectIntegrationCustomIssueTrackerArgs, opts ...ResourceOption) (*ProjectIntegrationCustomIssueTracker, error)
public ProjectIntegrationCustomIssueTracker(string name, ProjectIntegrationCustomIssueTrackerArgs args, CustomResourceOptions? opts = null)
public ProjectIntegrationCustomIssueTracker(String name, ProjectIntegrationCustomIssueTrackerArgs args)
public ProjectIntegrationCustomIssueTracker(String name, ProjectIntegrationCustomIssueTrackerArgs args, CustomResourceOptions options)
type: gitlab:ProjectIntegrationCustomIssueTracker
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ProjectIntegrationCustomIssueTrackerArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args ProjectIntegrationCustomIssueTrackerArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ProjectIntegrationCustomIssueTrackerArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ProjectIntegrationCustomIssueTrackerArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ProjectIntegrationCustomIssueTrackerArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var projectIntegrationCustomIssueTrackerResource = new GitLab.ProjectIntegrationCustomIssueTracker("projectIntegrationCustomIssueTrackerResource", new()
{
IssuesUrl = "string",
Project = "string",
ProjectUrl = "string",
});
example, err := gitlab.NewProjectIntegrationCustomIssueTracker(ctx, "projectIntegrationCustomIssueTrackerResource", &gitlab.ProjectIntegrationCustomIssueTrackerArgs{
IssuesUrl: pulumi.String("string"),
Project: pulumi.String("string"),
ProjectUrl: pulumi.String("string"),
})
var projectIntegrationCustomIssueTrackerResource = new ProjectIntegrationCustomIssueTracker("projectIntegrationCustomIssueTrackerResource", ProjectIntegrationCustomIssueTrackerArgs.builder()
.issuesUrl("string")
.project("string")
.projectUrl("string")
.build());
project_integration_custom_issue_tracker_resource = gitlab.ProjectIntegrationCustomIssueTracker("projectIntegrationCustomIssueTrackerResource",
issues_url="string",
project="string",
project_url="string")
const projectIntegrationCustomIssueTrackerResource = new gitlab.ProjectIntegrationCustomIssueTracker("projectIntegrationCustomIssueTrackerResource", {
issuesUrl: "string",
project: "string",
projectUrl: "string",
});
type: gitlab:ProjectIntegrationCustomIssueTracker
properties:
issuesUrl: string
project: string
projectUrl: string
ProjectIntegrationCustomIssueTracker Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The ProjectIntegrationCustomIssueTracker resource accepts the following input properties:
- Issues
Url string - The URL to view an issue in the external issue tracker. Must contain :id.
- Project string
- The ID or full path of the project for the custom issue tracker.
- Project
Url string - The URL to the project in the external issue tracker.
- Issues
Url string - The URL to view an issue in the external issue tracker. Must contain :id.
- Project string
- The ID or full path of the project for the custom issue tracker.
- Project
Url string - The URL to the project in the external issue tracker.
- issues
Url String - The URL to view an issue in the external issue tracker. Must contain :id.
- project String
- The ID or full path of the project for the custom issue tracker.
- project
Url String - The URL to the project in the external issue tracker.
- issues
Url string - The URL to view an issue in the external issue tracker. Must contain :id.
- project string
- The ID or full path of the project for the custom issue tracker.
- project
Url string - The URL to the project in the external issue tracker.
- issues_
url str - The URL to view an issue in the external issue tracker. Must contain :id.
- project str
- The ID or full path of the project for the custom issue tracker.
- project_
url str - The URL to the project in the external issue tracker.
- issues
Url String - The URL to view an issue in the external issue tracker. Must contain :id.
- project String
- The ID or full path of the project for the custom issue tracker.
- project
Url String - The URL to the project in the external issue tracker.
Outputs
All input properties are implicitly available as output properties. Additionally, the ProjectIntegrationCustomIssueTracker resource produces the following output properties:
- Active bool
- Whether the integration is active.
- Created
At string - The ISO8601 date/time that this integration was activated at in UTC.
- Id string
- The provider-assigned unique ID for this managed resource.
- Slug string
- The name of the integration in lowercase, shortened to 63 bytes, and with everything except 0-9 and a-z replaced with -. No leading / trailing -. Use in URLs, host names and domain names.
- Updated
At string - The ISO8601 date/time that this integration was last updated at in UTC.
- Active bool
- Whether the integration is active.
- Created
At string - The ISO8601 date/time that this integration was activated at in UTC.
- Id string
- The provider-assigned unique ID for this managed resource.
- Slug string
- The name of the integration in lowercase, shortened to 63 bytes, and with everything except 0-9 and a-z replaced with -. No leading / trailing -. Use in URLs, host names and domain names.
- Updated
At string - The ISO8601 date/time that this integration was last updated at in UTC.
- active Boolean
- Whether the integration is active.
- created
At String - The ISO8601 date/time that this integration was activated at in UTC.
- id String
- The provider-assigned unique ID for this managed resource.
- slug String
- The name of the integration in lowercase, shortened to 63 bytes, and with everything except 0-9 and a-z replaced with -. No leading / trailing -. Use in URLs, host names and domain names.
- updated
At String - The ISO8601 date/time that this integration was last updated at in UTC.
- active boolean
- Whether the integration is active.
- created
At string - The ISO8601 date/time that this integration was activated at in UTC.
- id string
- The provider-assigned unique ID for this managed resource.
- slug string
- The name of the integration in lowercase, shortened to 63 bytes, and with everything except 0-9 and a-z replaced with -. No leading / trailing -. Use in URLs, host names and domain names.
- updated
At string - The ISO8601 date/time that this integration was last updated at in UTC.
- active bool
- Whether the integration is active.
- created_
at str - The ISO8601 date/time that this integration was activated at in UTC.
- id str
- The provider-assigned unique ID for this managed resource.
- slug str
- The name of the integration in lowercase, shortened to 63 bytes, and with everything except 0-9 and a-z replaced with -. No leading / trailing -. Use in URLs, host names and domain names.
- updated_
at str - The ISO8601 date/time that this integration was last updated at in UTC.
- active Boolean
- Whether the integration is active.
- created
At String - The ISO8601 date/time that this integration was activated at in UTC.
- id String
- The provider-assigned unique ID for this managed resource.
- slug String
- The name of the integration in lowercase, shortened to 63 bytes, and with everything except 0-9 and a-z replaced with -. No leading / trailing -. Use in URLs, host names and domain names.
- updated
At String - The ISO8601 date/time that this integration was last updated at in UTC.
Look up Existing ProjectIntegrationCustomIssueTracker Resource
Get an existing ProjectIntegrationCustomIssueTracker resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: ProjectIntegrationCustomIssueTrackerState, opts?: CustomResourceOptions): ProjectIntegrationCustomIssueTracker
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
active: Optional[bool] = None,
created_at: Optional[str] = None,
issues_url: Optional[str] = None,
project: Optional[str] = None,
project_url: Optional[str] = None,
slug: Optional[str] = None,
updated_at: Optional[str] = None) -> ProjectIntegrationCustomIssueTracker
func GetProjectIntegrationCustomIssueTracker(ctx *Context, name string, id IDInput, state *ProjectIntegrationCustomIssueTrackerState, opts ...ResourceOption) (*ProjectIntegrationCustomIssueTracker, error)
public static ProjectIntegrationCustomIssueTracker Get(string name, Input<string> id, ProjectIntegrationCustomIssueTrackerState? state, CustomResourceOptions? opts = null)
public static ProjectIntegrationCustomIssueTracker get(String name, Output<String> id, ProjectIntegrationCustomIssueTrackerState state, CustomResourceOptions options)
resources: _: type: gitlab:ProjectIntegrationCustomIssueTracker get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Active bool
- Whether the integration is active.
- Created
At string - The ISO8601 date/time that this integration was activated at in UTC.
- Issues
Url string - The URL to view an issue in the external issue tracker. Must contain :id.
- Project string
- The ID or full path of the project for the custom issue tracker.
- Project
Url string - The URL to the project in the external issue tracker.
- Slug string
- The name of the integration in lowercase, shortened to 63 bytes, and with everything except 0-9 and a-z replaced with -. No leading / trailing -. Use in URLs, host names and domain names.
- Updated
At string - The ISO8601 date/time that this integration was last updated at in UTC.
- Active bool
- Whether the integration is active.
- Created
At string - The ISO8601 date/time that this integration was activated at in UTC.
- Issues
Url string - The URL to view an issue in the external issue tracker. Must contain :id.
- Project string
- The ID or full path of the project for the custom issue tracker.
- Project
Url string - The URL to the project in the external issue tracker.
- Slug string
- The name of the integration in lowercase, shortened to 63 bytes, and with everything except 0-9 and a-z replaced with -. No leading / trailing -. Use in URLs, host names and domain names.
- Updated
At string - The ISO8601 date/time that this integration was last updated at in UTC.
- active Boolean
- Whether the integration is active.
- created
At String - The ISO8601 date/time that this integration was activated at in UTC.
- issues
Url String - The URL to view an issue in the external issue tracker. Must contain :id.
- project String
- The ID or full path of the project for the custom issue tracker.
- project
Url String - The URL to the project in the external issue tracker.
- slug String
- The name of the integration in lowercase, shortened to 63 bytes, and with everything except 0-9 and a-z replaced with -. No leading / trailing -. Use in URLs, host names and domain names.
- updated
At String - The ISO8601 date/time that this integration was last updated at in UTC.
- active boolean
- Whether the integration is active.
- created
At string - The ISO8601 date/time that this integration was activated at in UTC.
- issues
Url string - The URL to view an issue in the external issue tracker. Must contain :id.
- project string
- The ID or full path of the project for the custom issue tracker.
- project
Url string - The URL to the project in the external issue tracker.
- slug string
- The name of the integration in lowercase, shortened to 63 bytes, and with everything except 0-9 and a-z replaced with -. No leading / trailing -. Use in URLs, host names and domain names.
- updated
At string - The ISO8601 date/time that this integration was last updated at in UTC.
- active bool
- Whether the integration is active.
- created_
at str - The ISO8601 date/time that this integration was activated at in UTC.
- issues_
url str - The URL to view an issue in the external issue tracker. Must contain :id.
- project str
- The ID or full path of the project for the custom issue tracker.
- project_
url str - The URL to the project in the external issue tracker.
- slug str
- The name of the integration in lowercase, shortened to 63 bytes, and with everything except 0-9 and a-z replaced with -. No leading / trailing -. Use in URLs, host names and domain names.
- updated_
at str - The ISO8601 date/time that this integration was last updated at in UTC.
- active Boolean
- Whether the integration is active.
- created
At String - The ISO8601 date/time that this integration was activated at in UTC.
- issues
Url String - The URL to view an issue in the external issue tracker. Must contain :id.
- project String
- The ID or full path of the project for the custom issue tracker.
- project
Url String - The URL to the project in the external issue tracker.
- slug String
- The name of the integration in lowercase, shortened to 63 bytes, and with everything except 0-9 and a-z replaced with -. No leading / trailing -. Use in URLs, host names and domain names.
- updated
At String - The ISO8601 date/time that this integration was last updated at in UTC.
Import
Starting in Terraform v1.5.0, you can use an import block to import gitlab_project_integration_custom_issue_tracker
. For example:
terraform
import {
to = gitlab_project_integration_custom_issue_tracker.example
id = “see CLI command below for ID”
}
Importing using the CLI is supported with the following syntax:
You can import a gitlab_project_integration_custom_issue_tracker state using the project ID, e.g.
$ pulumi import gitlab:index/projectIntegrationCustomIssueTracker:ProjectIntegrationCustomIssueTracker tracker 1
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- GitLab pulumi/pulumi-gitlab
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
gitlab
Terraform Provider.