1. Packages
  2. Zenduty Provider
  3. API Docs
  4. getIntegrations
zenduty 1.0.3 published on Monday, Mar 24, 2025 by zenduty

zenduty.getIntegrations

Explore with Pulumi AI

zenduty logo
zenduty 1.0.3 published on Monday, Mar 24, 2025 by zenduty
    import * as pulumi from "@pulumi/pulumi";
    import * as zenduty from "@pulumi/zenduty";
    
    const exampleintegrations = zenduty.getIntegrations({
        serviceId: "",
        teamId: "",
    });
    
    import pulumi
    import pulumi_zenduty as zenduty
    
    exampleintegrations = zenduty.get_integrations(service_id="",
        team_id="")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/zenduty/zenduty"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := zenduty.LookupIntegrations(ctx, &zenduty.LookupIntegrationsArgs{
    			ServiceId: "",
    			TeamId:    "",
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Zenduty = Pulumi.Zenduty;
    
    return await Deployment.RunAsync(() => 
    {
        var exampleintegrations = Zenduty.GetIntegrations.Invoke(new()
        {
            ServiceId = "",
            TeamId = "",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.zenduty.ZendutyFunctions;
    import com.pulumi.zenduty.inputs.GetIntegrationsArgs;
    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) {
            final var exampleintegrations = ZendutyFunctions.getIntegrations(GetIntegrationsArgs.builder()
                .serviceId("")
                .teamId("")
                .build());
    
        }
    }
    
    variables:
      exampleintegrations:
        fn::invoke:
          function: zenduty:getIntegrations
          arguments:
            serviceId: ""
            teamId: ""
    

    or

    import * as pulumi from "@pulumi/pulumi";
    import * as zenduty from "@pulumi/zenduty";
    
    const exampleintegrations = zenduty.getIntegrations({
        integrationId: "",
        serviceId: "",
        teamId: "",
    });
    
    import pulumi
    import pulumi_zenduty as zenduty
    
    exampleintegrations = zenduty.get_integrations(integration_id="",
        service_id="",
        team_id="")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/zenduty/zenduty"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := zenduty.LookupIntegrations(ctx, &zenduty.LookupIntegrationsArgs{
    			IntegrationId: pulumi.StringRef(""),
    			ServiceId:     "",
    			TeamId:        "",
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Zenduty = Pulumi.Zenduty;
    
    return await Deployment.RunAsync(() => 
    {
        var exampleintegrations = Zenduty.GetIntegrations.Invoke(new()
        {
            IntegrationId = "",
            ServiceId = "",
            TeamId = "",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.zenduty.ZendutyFunctions;
    import com.pulumi.zenduty.inputs.GetIntegrationsArgs;
    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) {
            final var exampleintegrations = ZendutyFunctions.getIntegrations(GetIntegrationsArgs.builder()
                .integrationId("")
                .serviceId("")
                .teamId("")
                .build());
    
        }
    }
    
    variables:
      exampleintegrations:
        fn::invoke:
          function: zenduty:getIntegrations
          arguments:
            integrationId: ""
            serviceId: ""
            teamId: ""
    
    import * as pulumi from "@pulumi/pulumi";
    
    export const integrations = data.zenduty_integrations.exampleintegrations.integrations;
    
    import pulumi
    
    pulumi.export("integrations", data["zenduty_integrations"]["exampleintegrations"]["integrations"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		ctx.Export("integrations", data.Zenduty_integrations.Exampleintegrations.Integrations)
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    
    return await Deployment.RunAsync(() => 
    {
        return new Dictionary<string, object?>
        {
            ["integrations"] = data.Zenduty_integrations.Exampleintegrations.Integrations,
        };
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    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) {
            ctx.export("integrations", data.zenduty_integrations().exampleintegrations().integrations());
        }
    }
    
    outputs:
      integrations: ${data.zenduty_integrations.exampleintegrations.integrations}
    

    Using getIntegrations

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getIntegrations(args: GetIntegrationsArgs, opts?: InvokeOptions): Promise<GetIntegrationsResult>
    function getIntegrationsOutput(args: GetIntegrationsOutputArgs, opts?: InvokeOptions): Output<GetIntegrationsResult>
    def get_integrations(id: Optional[str] = None,
                         integration_id: Optional[str] = None,
                         service_id: Optional[str] = None,
                         team_id: Optional[str] = None,
                         opts: Optional[InvokeOptions] = None) -> GetIntegrationsResult
    def get_integrations_output(id: Optional[pulumi.Input[str]] = None,
                         integration_id: Optional[pulumi.Input[str]] = None,
                         service_id: Optional[pulumi.Input[str]] = None,
                         team_id: Optional[pulumi.Input[str]] = None,
                         opts: Optional[InvokeOptions] = None) -> Output[GetIntegrationsResult]
    func LookupIntegrations(ctx *Context, args *LookupIntegrationsArgs, opts ...InvokeOption) (*LookupIntegrationsResult, error)
    func LookupIntegrationsOutput(ctx *Context, args *LookupIntegrationsOutputArgs, opts ...InvokeOption) LookupIntegrationsResultOutput

    > Note: This function is named LookupIntegrations in the Go SDK.

    public static class GetIntegrations 
    {
        public static Task<GetIntegrationsResult> InvokeAsync(GetIntegrationsArgs args, InvokeOptions? opts = null)
        public static Output<GetIntegrationsResult> Invoke(GetIntegrationsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetIntegrationsResult> getIntegrations(GetIntegrationsArgs args, InvokeOptions options)
    public static Output<GetIntegrationsResult> getIntegrations(GetIntegrationsArgs args, InvokeOptions options)
    
    fn::invoke:
      function: zenduty:index/getIntegrations:getIntegrations
      arguments:
        # arguments dictionary

    The following arguments are supported:

    ServiceId string
    The UniqueID of the service to query
    TeamId string
    The UniqueID of the team to query.
    Id string
    IntegrationId string
    The UniqueID of the integration to query
    ServiceId string
    The UniqueID of the service to query
    TeamId string
    The UniqueID of the team to query.
    Id string
    IntegrationId string
    The UniqueID of the integration to query
    serviceId String
    The UniqueID of the service to query
    teamId String
    The UniqueID of the team to query.
    id String
    integrationId String
    The UniqueID of the integration to query
    serviceId string
    The UniqueID of the service to query
    teamId string
    The UniqueID of the team to query.
    id string
    integrationId string
    The UniqueID of the integration to query
    service_id str
    The UniqueID of the service to query
    team_id str
    The UniqueID of the team to query.
    id str
    integration_id str
    The UniqueID of the integration to query
    serviceId String
    The UniqueID of the service to query
    teamId String
    The UniqueID of the team to query.
    id String
    integrationId String
    The UniqueID of the integration to query

    getIntegrations Result

    The following output properties are available:

    Supporting Types

    GetIntegrationsIntegration

    Application string
    The unique_id of application that the integration belongs to.
    ApplicationReference Dictionary<string, string>
    CreateIncidentsFor double
    CreatedBy string
    The unique_id of the user that created the integration.
    CreationDate string
    DefaultUrgency double
    The default urgency of the incidents for this integration.
    IntegrationKey string
    The integration key of the integration.
    IntegrationType double
    Name string
    The name of the integration.
    Service string
    The unique_id of service that the integration belongs to.
    Summary string
    The summary of the integration.
    UniqueId string
    The UniqueID of the integration.
    WebhookUrl string
    The webhook url of the integration.to send alerts to.
    Application string
    The unique_id of application that the integration belongs to.
    ApplicationReference map[string]string
    CreateIncidentsFor float64
    CreatedBy string
    The unique_id of the user that created the integration.
    CreationDate string
    DefaultUrgency float64
    The default urgency of the incidents for this integration.
    IntegrationKey string
    The integration key of the integration.
    IntegrationType float64
    Name string
    The name of the integration.
    Service string
    The unique_id of service that the integration belongs to.
    Summary string
    The summary of the integration.
    UniqueId string
    The UniqueID of the integration.
    WebhookUrl string
    The webhook url of the integration.to send alerts to.
    application String
    The unique_id of application that the integration belongs to.
    applicationReference Map<String,String>
    createIncidentsFor Double
    createdBy String
    The unique_id of the user that created the integration.
    creationDate String
    defaultUrgency Double
    The default urgency of the incidents for this integration.
    integrationKey String
    The integration key of the integration.
    integrationType Double
    name String
    The name of the integration.
    service String
    The unique_id of service that the integration belongs to.
    summary String
    The summary of the integration.
    uniqueId String
    The UniqueID of the integration.
    webhookUrl String
    The webhook url of the integration.to send alerts to.
    application string
    The unique_id of application that the integration belongs to.
    applicationReference {[key: string]: string}
    createIncidentsFor number
    createdBy string
    The unique_id of the user that created the integration.
    creationDate string
    defaultUrgency number
    The default urgency of the incidents for this integration.
    integrationKey string
    The integration key of the integration.
    integrationType number
    name string
    The name of the integration.
    service string
    The unique_id of service that the integration belongs to.
    summary string
    The summary of the integration.
    uniqueId string
    The UniqueID of the integration.
    webhookUrl string
    The webhook url of the integration.to send alerts to.
    application str
    The unique_id of application that the integration belongs to.
    application_reference Mapping[str, str]
    create_incidents_for float
    created_by str
    The unique_id of the user that created the integration.
    creation_date str
    default_urgency float
    The default urgency of the incidents for this integration.
    integration_key str
    The integration key of the integration.
    integration_type float
    name str
    The name of the integration.
    service str
    The unique_id of service that the integration belongs to.
    summary str
    The summary of the integration.
    unique_id str
    The UniqueID of the integration.
    webhook_url str
    The webhook url of the integration.to send alerts to.
    application String
    The unique_id of application that the integration belongs to.
    applicationReference Map<String>
    createIncidentsFor Number
    createdBy String
    The unique_id of the user that created the integration.
    creationDate String
    defaultUrgency Number
    The default urgency of the incidents for this integration.
    integrationKey String
    The integration key of the integration.
    integrationType Number
    name String
    The name of the integration.
    service String
    The unique_id of service that the integration belongs to.
    summary String
    The summary of the integration.
    uniqueId String
    The UniqueID of the integration.
    webhookUrl String
    The webhook url of the integration.to send alerts to.

    Package Details

    Repository
    zenduty zenduty/terraform-provider-zenduty
    License
    Notes
    This Pulumi package is based on the zenduty Terraform Provider.
    zenduty logo
    zenduty 1.0.3 published on Monday, Mar 24, 2025 by zenduty