signalfx.jira.Integration
Explore with Pulumi AI
Splunk Observability Cloud Jira integrations. For help with this integration see Integration with Jira.
NOTE When managing integrations, use a session token of an administrator to authenticate the Splunk Observability Cloud provider. See Operations that require a session token for an administrator. Otherwise you’ll receive a 4xx error.
Example
import * as pulumi from "@pulumi/pulumi";
import * as signalfx from "@pulumi/signalfx";
const jiraMyteamXX = new signalfx.jira.Integration("jira_myteamXX", {
name: "JiraFoo",
enabled: false,
authMethod: "UsernameAndPassword",
username: "yoosername",
password: "paasword",
assigneeName: "testytesterson",
assigneeDisplayName: "Testy Testerson",
baseUrl: "https://www.example.com",
issueType: "Story",
projectKey: "TEST",
});
import pulumi
import pulumi_signalfx as signalfx
jira_myteam_xx = signalfx.jira.Integration("jira_myteamXX",
name="JiraFoo",
enabled=False,
auth_method="UsernameAndPassword",
username="yoosername",
password="paasword",
assignee_name="testytesterson",
assignee_display_name="Testy Testerson",
base_url="https://www.example.com",
issue_type="Story",
project_key="TEST")
package main
import (
"github.com/pulumi/pulumi-signalfx/sdk/v7/go/signalfx/jira"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := jira.NewIntegration(ctx, "jira_myteamXX", &jira.IntegrationArgs{
Name: pulumi.String("JiraFoo"),
Enabled: pulumi.Bool(false),
AuthMethod: pulumi.String("UsernameAndPassword"),
Username: pulumi.String("yoosername"),
Password: pulumi.String("paasword"),
AssigneeName: pulumi.String("testytesterson"),
AssigneeDisplayName: pulumi.String("Testy Testerson"),
BaseUrl: pulumi.String("https://www.example.com"),
IssueType: pulumi.String("Story"),
ProjectKey: pulumi.String("TEST"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using SignalFx = Pulumi.SignalFx;
return await Deployment.RunAsync(() =>
{
var jiraMyteamXX = new SignalFx.Jira.Integration("jira_myteamXX", new()
{
Name = "JiraFoo",
Enabled = false,
AuthMethod = "UsernameAndPassword",
Username = "yoosername",
Password = "paasword",
AssigneeName = "testytesterson",
AssigneeDisplayName = "Testy Testerson",
BaseUrl = "https://www.example.com",
IssueType = "Story",
ProjectKey = "TEST",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.signalfx.jira.Integration;
import com.pulumi.signalfx.jira.IntegrationArgs;
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 jiraMyteamXX = new Integration("jiraMyteamXX", IntegrationArgs.builder()
.name("JiraFoo")
.enabled(false)
.authMethod("UsernameAndPassword")
.username("yoosername")
.password("paasword")
.assigneeName("testytesterson")
.assigneeDisplayName("Testy Testerson")
.baseUrl("https://www.example.com")
.issueType("Story")
.projectKey("TEST")
.build());
}
}
resources:
jiraMyteamXX:
type: signalfx:jira:Integration
name: jira_myteamXX
properties:
name: JiraFoo
enabled: false
authMethod: UsernameAndPassword
username: yoosername
password: paasword
assigneeName: testytesterson
assigneeDisplayName: Testy Testerson
baseUrl: https://www.example.com
issueType: Story
projectKey: TEST
Create Integration Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Integration(name: string, args: IntegrationArgs, opts?: CustomResourceOptions);
@overload
def Integration(resource_name: str,
args: IntegrationArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Integration(resource_name: str,
opts: Optional[ResourceOptions] = None,
assignee_name: Optional[str] = None,
auth_method: Optional[str] = None,
base_url: Optional[str] = None,
enabled: Optional[bool] = None,
issue_type: Optional[str] = None,
project_key: Optional[str] = None,
api_token: Optional[str] = None,
assignee_display_name: Optional[str] = None,
name: Optional[str] = None,
password: Optional[str] = None,
user_email: Optional[str] = None,
username: Optional[str] = None)
func NewIntegration(ctx *Context, name string, args IntegrationArgs, opts ...ResourceOption) (*Integration, error)
public Integration(string name, IntegrationArgs args, CustomResourceOptions? opts = null)
public Integration(String name, IntegrationArgs args)
public Integration(String name, IntegrationArgs args, CustomResourceOptions options)
type: signalfx:jira:Integration
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 IntegrationArgs
- 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 IntegrationArgs
- 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 IntegrationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args IntegrationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args IntegrationArgs
- 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 exampleintegrationResourceResourceFromJiraintegration = new SignalFx.Jira.Integration("exampleintegrationResourceResourceFromJiraintegration", new()
{
AssigneeName = "string",
AuthMethod = "string",
BaseUrl = "string",
Enabled = false,
IssueType = "string",
ProjectKey = "string",
ApiToken = "string",
AssigneeDisplayName = "string",
Name = "string",
Password = "string",
UserEmail = "string",
Username = "string",
});
example, err := jira.NewIntegration(ctx, "exampleintegrationResourceResourceFromJiraintegration", &jira.IntegrationArgs{
AssigneeName: pulumi.String("string"),
AuthMethod: pulumi.String("string"),
BaseUrl: pulumi.String("string"),
Enabled: pulumi.Bool(false),
IssueType: pulumi.String("string"),
ProjectKey: pulumi.String("string"),
ApiToken: pulumi.String("string"),
AssigneeDisplayName: pulumi.String("string"),
Name: pulumi.String("string"),
Password: pulumi.String("string"),
UserEmail: pulumi.String("string"),
Username: pulumi.String("string"),
})
var exampleintegrationResourceResourceFromJiraintegration = new Integration("exampleintegrationResourceResourceFromJiraintegration", IntegrationArgs.builder()
.assigneeName("string")
.authMethod("string")
.baseUrl("string")
.enabled(false)
.issueType("string")
.projectKey("string")
.apiToken("string")
.assigneeDisplayName("string")
.name("string")
.password("string")
.userEmail("string")
.username("string")
.build());
exampleintegration_resource_resource_from_jiraintegration = signalfx.jira.Integration("exampleintegrationResourceResourceFromJiraintegration",
assignee_name="string",
auth_method="string",
base_url="string",
enabled=False,
issue_type="string",
project_key="string",
api_token="string",
assignee_display_name="string",
name="string",
password="string",
user_email="string",
username="string")
const exampleintegrationResourceResourceFromJiraintegration = new signalfx.jira.Integration("exampleintegrationResourceResourceFromJiraintegration", {
assigneeName: "string",
authMethod: "string",
baseUrl: "string",
enabled: false,
issueType: "string",
projectKey: "string",
apiToken: "string",
assigneeDisplayName: "string",
name: "string",
password: "string",
userEmail: "string",
username: "string",
});
type: signalfx:jira:Integration
properties:
apiToken: string
assigneeDisplayName: string
assigneeName: string
authMethod: string
baseUrl: string
enabled: false
issueType: string
name: string
password: string
projectKey: string
userEmail: string
username: string
Integration 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 Integration resource accepts the following input properties:
- Assignee
Name string - Jira user name for the assignee.
- Auth
Method string - Authentication method used when creating the Jira integration. One of
EmailAndToken
(usinguser_email
andapi_token
) orUsernameAndPassword
(usingusername
andpassword
). - Base
Url string - Base URL of the Jira instance that's integrated with SignalFx.
- Enabled bool
- Whether the integration is enabled.
- Issue
Type string - Issue type (for example, Story) for tickets that Jira creates for detector notifications. Splunk Observability Cloud validates issue types, so you must specify a type that's valid for the Jira project specified in
projectKey
. - Project
Key string - Jira key of an existing project. When Jira creates a new ticket for a detector notification, the ticket is assigned to this project.
- Api
Token string - The API token for the user email
- Assignee
Display stringName - Jira display name for the assignee.
- Name string
- Name of the integration.
- Password string
- Password used to authenticate the Jira integration.
- User
Email string - Email address used to authenticate the Jira integration.
- Username string
- User name used to authenticate the Jira integration.
- Assignee
Name string - Jira user name for the assignee.
- Auth
Method string - Authentication method used when creating the Jira integration. One of
EmailAndToken
(usinguser_email
andapi_token
) orUsernameAndPassword
(usingusername
andpassword
). - Base
Url string - Base URL of the Jira instance that's integrated with SignalFx.
- Enabled bool
- Whether the integration is enabled.
- Issue
Type string - Issue type (for example, Story) for tickets that Jira creates for detector notifications. Splunk Observability Cloud validates issue types, so you must specify a type that's valid for the Jira project specified in
projectKey
. - Project
Key string - Jira key of an existing project. When Jira creates a new ticket for a detector notification, the ticket is assigned to this project.
- Api
Token string - The API token for the user email
- Assignee
Display stringName - Jira display name for the assignee.
- Name string
- Name of the integration.
- Password string
- Password used to authenticate the Jira integration.
- User
Email string - Email address used to authenticate the Jira integration.
- Username string
- User name used to authenticate the Jira integration.
- assignee
Name String - Jira user name for the assignee.
- auth
Method String - Authentication method used when creating the Jira integration. One of
EmailAndToken
(usinguser_email
andapi_token
) orUsernameAndPassword
(usingusername
andpassword
). - base
Url String - Base URL of the Jira instance that's integrated with SignalFx.
- enabled Boolean
- Whether the integration is enabled.
- issue
Type String - Issue type (for example, Story) for tickets that Jira creates for detector notifications. Splunk Observability Cloud validates issue types, so you must specify a type that's valid for the Jira project specified in
projectKey
. - project
Key String - Jira key of an existing project. When Jira creates a new ticket for a detector notification, the ticket is assigned to this project.
- api
Token String - The API token for the user email
- assignee
Display StringName - Jira display name for the assignee.
- name String
- Name of the integration.
- password String
- Password used to authenticate the Jira integration.
- user
Email String - Email address used to authenticate the Jira integration.
- username String
- User name used to authenticate the Jira integration.
- assignee
Name string - Jira user name for the assignee.
- auth
Method string - Authentication method used when creating the Jira integration. One of
EmailAndToken
(usinguser_email
andapi_token
) orUsernameAndPassword
(usingusername
andpassword
). - base
Url string - Base URL of the Jira instance that's integrated with SignalFx.
- enabled boolean
- Whether the integration is enabled.
- issue
Type string - Issue type (for example, Story) for tickets that Jira creates for detector notifications. Splunk Observability Cloud validates issue types, so you must specify a type that's valid for the Jira project specified in
projectKey
. - project
Key string - Jira key of an existing project. When Jira creates a new ticket for a detector notification, the ticket is assigned to this project.
- api
Token string - The API token for the user email
- assignee
Display stringName - Jira display name for the assignee.
- name string
- Name of the integration.
- password string
- Password used to authenticate the Jira integration.
- user
Email string - Email address used to authenticate the Jira integration.
- username string
- User name used to authenticate the Jira integration.
- assignee_
name str - Jira user name for the assignee.
- auth_
method str - Authentication method used when creating the Jira integration. One of
EmailAndToken
(usinguser_email
andapi_token
) orUsernameAndPassword
(usingusername
andpassword
). - base_
url str - Base URL of the Jira instance that's integrated with SignalFx.
- enabled bool
- Whether the integration is enabled.
- issue_
type str - Issue type (for example, Story) for tickets that Jira creates for detector notifications. Splunk Observability Cloud validates issue types, so you must specify a type that's valid for the Jira project specified in
projectKey
. - project_
key str - Jira key of an existing project. When Jira creates a new ticket for a detector notification, the ticket is assigned to this project.
- api_
token str - The API token for the user email
- assignee_
display_ strname - Jira display name for the assignee.
- name str
- Name of the integration.
- password str
- Password used to authenticate the Jira integration.
- user_
email str - Email address used to authenticate the Jira integration.
- username str
- User name used to authenticate the Jira integration.
- assignee
Name String - Jira user name for the assignee.
- auth
Method String - Authentication method used when creating the Jira integration. One of
EmailAndToken
(usinguser_email
andapi_token
) orUsernameAndPassword
(usingusername
andpassword
). - base
Url String - Base URL of the Jira instance that's integrated with SignalFx.
- enabled Boolean
- Whether the integration is enabled.
- issue
Type String - Issue type (for example, Story) for tickets that Jira creates for detector notifications. Splunk Observability Cloud validates issue types, so you must specify a type that's valid for the Jira project specified in
projectKey
. - project
Key String - Jira key of an existing project. When Jira creates a new ticket for a detector notification, the ticket is assigned to this project.
- api
Token String - The API token for the user email
- assignee
Display StringName - Jira display name for the assignee.
- name String
- Name of the integration.
- password String
- Password used to authenticate the Jira integration.
- user
Email String - Email address used to authenticate the Jira integration.
- username String
- User name used to authenticate the Jira integration.
Outputs
All input properties are implicitly available as output properties. Additionally, the Integration resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing Integration Resource
Get an existing Integration 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?: IntegrationState, opts?: CustomResourceOptions): Integration
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
api_token: Optional[str] = None,
assignee_display_name: Optional[str] = None,
assignee_name: Optional[str] = None,
auth_method: Optional[str] = None,
base_url: Optional[str] = None,
enabled: Optional[bool] = None,
issue_type: Optional[str] = None,
name: Optional[str] = None,
password: Optional[str] = None,
project_key: Optional[str] = None,
user_email: Optional[str] = None,
username: Optional[str] = None) -> Integration
func GetIntegration(ctx *Context, name string, id IDInput, state *IntegrationState, opts ...ResourceOption) (*Integration, error)
public static Integration Get(string name, Input<string> id, IntegrationState? state, CustomResourceOptions? opts = null)
public static Integration get(String name, Output<String> id, IntegrationState 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.
- Api
Token string - The API token for the user email
- Assignee
Display stringName - Jira display name for the assignee.
- Assignee
Name string - Jira user name for the assignee.
- Auth
Method string - Authentication method used when creating the Jira integration. One of
EmailAndToken
(usinguser_email
andapi_token
) orUsernameAndPassword
(usingusername
andpassword
). - Base
Url string - Base URL of the Jira instance that's integrated with SignalFx.
- Enabled bool
- Whether the integration is enabled.
- Issue
Type string - Issue type (for example, Story) for tickets that Jira creates for detector notifications. Splunk Observability Cloud validates issue types, so you must specify a type that's valid for the Jira project specified in
projectKey
. - Name string
- Name of the integration.
- Password string
- Password used to authenticate the Jira integration.
- Project
Key string - Jira key of an existing project. When Jira creates a new ticket for a detector notification, the ticket is assigned to this project.
- User
Email string - Email address used to authenticate the Jira integration.
- Username string
- User name used to authenticate the Jira integration.
- Api
Token string - The API token for the user email
- Assignee
Display stringName - Jira display name for the assignee.
- Assignee
Name string - Jira user name for the assignee.
- Auth
Method string - Authentication method used when creating the Jira integration. One of
EmailAndToken
(usinguser_email
andapi_token
) orUsernameAndPassword
(usingusername
andpassword
). - Base
Url string - Base URL of the Jira instance that's integrated with SignalFx.
- Enabled bool
- Whether the integration is enabled.
- Issue
Type string - Issue type (for example, Story) for tickets that Jira creates for detector notifications. Splunk Observability Cloud validates issue types, so you must specify a type that's valid for the Jira project specified in
projectKey
. - Name string
- Name of the integration.
- Password string
- Password used to authenticate the Jira integration.
- Project
Key string - Jira key of an existing project. When Jira creates a new ticket for a detector notification, the ticket is assigned to this project.
- User
Email string - Email address used to authenticate the Jira integration.
- Username string
- User name used to authenticate the Jira integration.
- api
Token String - The API token for the user email
- assignee
Display StringName - Jira display name for the assignee.
- assignee
Name String - Jira user name for the assignee.
- auth
Method String - Authentication method used when creating the Jira integration. One of
EmailAndToken
(usinguser_email
andapi_token
) orUsernameAndPassword
(usingusername
andpassword
). - base
Url String - Base URL of the Jira instance that's integrated with SignalFx.
- enabled Boolean
- Whether the integration is enabled.
- issue
Type String - Issue type (for example, Story) for tickets that Jira creates for detector notifications. Splunk Observability Cloud validates issue types, so you must specify a type that's valid for the Jira project specified in
projectKey
. - name String
- Name of the integration.
- password String
- Password used to authenticate the Jira integration.
- project
Key String - Jira key of an existing project. When Jira creates a new ticket for a detector notification, the ticket is assigned to this project.
- user
Email String - Email address used to authenticate the Jira integration.
- username String
- User name used to authenticate the Jira integration.
- api
Token string - The API token for the user email
- assignee
Display stringName - Jira display name for the assignee.
- assignee
Name string - Jira user name for the assignee.
- auth
Method string - Authentication method used when creating the Jira integration. One of
EmailAndToken
(usinguser_email
andapi_token
) orUsernameAndPassword
(usingusername
andpassword
). - base
Url string - Base URL of the Jira instance that's integrated with SignalFx.
- enabled boolean
- Whether the integration is enabled.
- issue
Type string - Issue type (for example, Story) for tickets that Jira creates for detector notifications. Splunk Observability Cloud validates issue types, so you must specify a type that's valid for the Jira project specified in
projectKey
. - name string
- Name of the integration.
- password string
- Password used to authenticate the Jira integration.
- project
Key string - Jira key of an existing project. When Jira creates a new ticket for a detector notification, the ticket is assigned to this project.
- user
Email string - Email address used to authenticate the Jira integration.
- username string
- User name used to authenticate the Jira integration.
- api_
token str - The API token for the user email
- assignee_
display_ strname - Jira display name for the assignee.
- assignee_
name str - Jira user name for the assignee.
- auth_
method str - Authentication method used when creating the Jira integration. One of
EmailAndToken
(usinguser_email
andapi_token
) orUsernameAndPassword
(usingusername
andpassword
). - base_
url str - Base URL of the Jira instance that's integrated with SignalFx.
- enabled bool
- Whether the integration is enabled.
- issue_
type str - Issue type (for example, Story) for tickets that Jira creates for detector notifications. Splunk Observability Cloud validates issue types, so you must specify a type that's valid for the Jira project specified in
projectKey
. - name str
- Name of the integration.
- password str
- Password used to authenticate the Jira integration.
- project_
key str - Jira key of an existing project. When Jira creates a new ticket for a detector notification, the ticket is assigned to this project.
- user_
email str - Email address used to authenticate the Jira integration.
- username str
- User name used to authenticate the Jira integration.
- api
Token String - The API token for the user email
- assignee
Display StringName - Jira display name for the assignee.
- assignee
Name String - Jira user name for the assignee.
- auth
Method String - Authentication method used when creating the Jira integration. One of
EmailAndToken
(usinguser_email
andapi_token
) orUsernameAndPassword
(usingusername
andpassword
). - base
Url String - Base URL of the Jira instance that's integrated with SignalFx.
- enabled Boolean
- Whether the integration is enabled.
- issue
Type String - Issue type (for example, Story) for tickets that Jira creates for detector notifications. Splunk Observability Cloud validates issue types, so you must specify a type that's valid for the Jira project specified in
projectKey
. - name String
- Name of the integration.
- password String
- Password used to authenticate the Jira integration.
- project
Key String - Jira key of an existing project. When Jira creates a new ticket for a detector notification, the ticket is assigned to this project.
- user
Email String - Email address used to authenticate the Jira integration.
- username String
- User name used to authenticate the Jira integration.
Package Details
- Repository
- SignalFx pulumi/pulumi-signalfx
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
signalfx
Terraform Provider.