1. Packages
  2. GitLab
  3. API Docs
  4. ServiceCustomIssueTracker
GitLab v6.11.0 published on Friday, Apr 19, 2024 by Pulumi

gitlab.ServiceCustomIssueTracker

Explore with Pulumi AI

gitlab logo
GitLab v6.11.0 published on Friday, Apr 19, 2024 by Pulumi

    The gitlab.ServiceCustomIssueTracker resource allows to manage the lifecycle of a project integration with Custom Issue Tracker.

    This resource is deprecated. use gitlab.IntegrationCustomIssueTrackerinstead!

    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("awesomeProject", {
        description: "My awesome project.",
        visibilityLevel: "public",
    });
    const tracker = new gitlab.ServiceCustomIssueTracker("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("awesomeProject",
        description="My awesome project.",
        visibility_level="public")
    tracker = gitlab.ServiceCustomIssueTracker("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/v6/go/gitlab"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		awesomeProject, err := gitlab.NewProject(ctx, "awesomeProject", &gitlab.ProjectArgs{
    			Description:     pulumi.String("My awesome project."),
    			VisibilityLevel: pulumi.String("public"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = gitlab.NewServiceCustomIssueTracker(ctx, "tracker", &gitlab.ServiceCustomIssueTrackerArgs{
    			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("awesomeProject", new()
        {
            Description = "My awesome project.",
            VisibilityLevel = "public",
        });
    
        var tracker = new GitLab.ServiceCustomIssueTracker("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.ServiceCustomIssueTracker;
    import com.pulumi.gitlab.ServiceCustomIssueTrackerArgs;
    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()        
                .description("My awesome project.")
                .visibilityLevel("public")
                .build());
    
            var tracker = new ServiceCustomIssueTracker("tracker", ServiceCustomIssueTrackerArgs.builder()        
                .project(awesomeProject.id())
                .projectUrl("https://customtracker.com/issues")
                .issuesUrl("https://customtracker.com/TEST-:id")
                .build());
    
        }
    }
    
    resources:
      awesomeProject:
        type: gitlab:Project
        properties:
          description: My awesome project.
          visibilityLevel: public
      tracker:
        type: gitlab:ServiceCustomIssueTracker
        properties:
          project: ${awesomeProject.id}
          projectUrl: https://customtracker.com/issues
          issuesUrl: https://customtracker.com/TEST-:id
    

    Create ServiceCustomIssueTracker Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new ServiceCustomIssueTracker(name: string, args: ServiceCustomIssueTrackerArgs, opts?: CustomResourceOptions);
    @overload
    def ServiceCustomIssueTracker(resource_name: str,
                                  args: ServiceCustomIssueTrackerArgs,
                                  opts: Optional[ResourceOptions] = None)
    
    @overload
    def ServiceCustomIssueTracker(resource_name: str,
                                  opts: Optional[ResourceOptions] = None,
                                  issues_url: Optional[str] = None,
                                  project: Optional[str] = None,
                                  project_url: Optional[str] = None)
    func NewServiceCustomIssueTracker(ctx *Context, name string, args ServiceCustomIssueTrackerArgs, opts ...ResourceOption) (*ServiceCustomIssueTracker, error)
    public ServiceCustomIssueTracker(string name, ServiceCustomIssueTrackerArgs args, CustomResourceOptions? opts = null)
    public ServiceCustomIssueTracker(String name, ServiceCustomIssueTrackerArgs args)
    public ServiceCustomIssueTracker(String name, ServiceCustomIssueTrackerArgs args, CustomResourceOptions options)
    
    type: gitlab:ServiceCustomIssueTracker
    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 ServiceCustomIssueTrackerArgs
    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 ServiceCustomIssueTrackerArgs
    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 ServiceCustomIssueTrackerArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ServiceCustomIssueTrackerArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ServiceCustomIssueTrackerArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var serviceCustomIssueTrackerResource = new GitLab.ServiceCustomIssueTracker("serviceCustomIssueTrackerResource", new()
    {
        IssuesUrl = "string",
        Project = "string",
        ProjectUrl = "string",
    });
    
    example, err := gitlab.NewServiceCustomIssueTracker(ctx, "serviceCustomIssueTrackerResource", &gitlab.ServiceCustomIssueTrackerArgs{
    	IssuesUrl:  pulumi.String("string"),
    	Project:    pulumi.String("string"),
    	ProjectUrl: pulumi.String("string"),
    })
    
    var serviceCustomIssueTrackerResource = new ServiceCustomIssueTracker("serviceCustomIssueTrackerResource", ServiceCustomIssueTrackerArgs.builder()        
        .issuesUrl("string")
        .project("string")
        .projectUrl("string")
        .build());
    
    service_custom_issue_tracker_resource = gitlab.ServiceCustomIssueTracker("serviceCustomIssueTrackerResource",
        issues_url="string",
        project="string",
        project_url="string")
    
    const serviceCustomIssueTrackerResource = new gitlab.ServiceCustomIssueTracker("serviceCustomIssueTrackerResource", {
        issuesUrl: "string",
        project: "string",
        projectUrl: "string",
    });
    
    type: gitlab:ServiceCustomIssueTracker
    properties:
        issuesUrl: string
        project: string
        projectUrl: string
    

    ServiceCustomIssueTracker Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The ServiceCustomIssueTracker resource accepts the following input properties:

    IssuesUrl 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.
    ProjectUrl string
    The URL to the project in the external issue tracker.
    IssuesUrl 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.
    ProjectUrl string
    The URL to the project in the external issue tracker.
    issuesUrl 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.
    projectUrl String
    The URL to the project in the external issue tracker.
    issuesUrl 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.
    projectUrl 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.
    issuesUrl 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.
    projectUrl String
    The URL to the project in the external issue tracker.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ServiceCustomIssueTracker resource produces the following output properties:

    Active bool
    Whether the integration is active.
    CreatedAt 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.
    UpdatedAt string
    The ISO8601 date/time that this integration was last updated at in UTC.
    Active bool
    Whether the integration is active.
    CreatedAt 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.
    UpdatedAt string
    The ISO8601 date/time that this integration was last updated at in UTC.
    active Boolean
    Whether the integration is active.
    createdAt 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.
    updatedAt String
    The ISO8601 date/time that this integration was last updated at in UTC.
    active boolean
    Whether the integration is active.
    createdAt 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.
    updatedAt 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.
    createdAt 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.
    updatedAt String
    The ISO8601 date/time that this integration was last updated at in UTC.

    Look up Existing ServiceCustomIssueTracker Resource

    Get an existing ServiceCustomIssueTracker 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?: ServiceCustomIssueTrackerState, opts?: CustomResourceOptions): ServiceCustomIssueTracker
    @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) -> ServiceCustomIssueTracker
    func GetServiceCustomIssueTracker(ctx *Context, name string, id IDInput, state *ServiceCustomIssueTrackerState, opts ...ResourceOption) (*ServiceCustomIssueTracker, error)
    public static ServiceCustomIssueTracker Get(string name, Input<string> id, ServiceCustomIssueTrackerState? state, CustomResourceOptions? opts = null)
    public static ServiceCustomIssueTracker get(String name, Output<String> id, ServiceCustomIssueTrackerState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    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.
    The following state arguments are supported:
    Active bool
    Whether the integration is active.
    CreatedAt string
    The ISO8601 date/time that this integration was activated at in UTC.
    IssuesUrl 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.
    ProjectUrl 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.
    UpdatedAt string
    The ISO8601 date/time that this integration was last updated at in UTC.
    Active bool
    Whether the integration is active.
    CreatedAt string
    The ISO8601 date/time that this integration was activated at in UTC.
    IssuesUrl 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.
    ProjectUrl 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.
    UpdatedAt string
    The ISO8601 date/time that this integration was last updated at in UTC.
    active Boolean
    Whether the integration is active.
    createdAt String
    The ISO8601 date/time that this integration was activated at in UTC.
    issuesUrl 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.
    projectUrl 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.
    updatedAt String
    The ISO8601 date/time that this integration was last updated at in UTC.
    active boolean
    Whether the integration is active.
    createdAt string
    The ISO8601 date/time that this integration was activated at in UTC.
    issuesUrl 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.
    projectUrl 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.
    updatedAt 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.
    createdAt String
    The ISO8601 date/time that this integration was activated at in UTC.
    issuesUrl 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.
    projectUrl 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.
    updatedAt String
    The ISO8601 date/time that this integration was last updated at in UTC.

    Import

    You can import a gitlab_service_custom_issue_tracker state using the project ID, e.g.

    $ pulumi import gitlab:index/serviceCustomIssueTracker:ServiceCustomIssueTracker 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.
    gitlab logo
    GitLab v6.11.0 published on Friday, Apr 19, 2024 by Pulumi