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

zenduty.getServices

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 exampleservices = zenduty.getServices({
        teamId: "",
    });
    
    import pulumi
    import pulumi_zenduty as zenduty
    
    exampleservices = zenduty.get_services(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.LookupServices(ctx, &zenduty.LookupServicesArgs{
    			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 exampleservices = Zenduty.GetServices.Invoke(new()
        {
            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.GetServicesArgs;
    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 exampleservices = ZendutyFunctions.getServices(GetServicesArgs.builder()
                .teamId("")
                .build());
    
        }
    }
    
    variables:
      exampleservices:
        fn::invoke:
          function: zenduty:getServices
          arguments:
            teamId: ""
    

    or

    import * as pulumi from "@pulumi/pulumi";
    import * as zenduty from "@pulumi/zenduty";
    
    const exampleservice = zenduty.getServices({
        serviceId: "",
        teamId: "",
    });
    
    import pulumi
    import pulumi_zenduty as zenduty
    
    exampleservice = zenduty.get_services(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.LookupServices(ctx, &zenduty.LookupServicesArgs{
    			ServiceId: pulumi.StringRef(""),
    			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 exampleservice = Zenduty.GetServices.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.GetServicesArgs;
    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 exampleservice = ZendutyFunctions.getServices(GetServicesArgs.builder()
                .serviceId("")
                .teamId("")
                .build());
    
        }
    }
    
    variables:
      exampleservice:
        fn::invoke:
          function: zenduty:getServices
          arguments:
            serviceId: ""
            teamId: ""
    
    import * as pulumi from "@pulumi/pulumi";
    
    export const services = data.zenduty_services.exampleservices.services;
    
    import pulumi
    
    pulumi.export("services", data["zenduty_services"]["exampleservices"]["services"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		ctx.Export("services", data.Zenduty_services.Exampleservices.Services)
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    
    return await Deployment.RunAsync(() => 
    {
        return new Dictionary<string, object?>
        {
            ["services"] = data.Zenduty_services.Exampleservices.Services,
        };
    });
    
    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("services", data.zenduty_services().exampleservices().services());
        }
    }
    
    outputs:
      services: ${data.zenduty_services.exampleservices.services}
    

    Using getServices

    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 getServices(args: GetServicesArgs, opts?: InvokeOptions): Promise<GetServicesResult>
    function getServicesOutput(args: GetServicesOutputArgs, opts?: InvokeOptions): Output<GetServicesResult>
    def get_services(id: Optional[str] = None,
                     service_id: Optional[str] = None,
                     team_id: Optional[str] = None,
                     opts: Optional[InvokeOptions] = None) -> GetServicesResult
    def get_services_output(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[GetServicesResult]
    func LookupServices(ctx *Context, args *LookupServicesArgs, opts ...InvokeOption) (*LookupServicesResult, error)
    func LookupServicesOutput(ctx *Context, args *LookupServicesOutputArgs, opts ...InvokeOption) LookupServicesResultOutput

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

    public static class GetServices 
    {
        public static Task<GetServicesResult> InvokeAsync(GetServicesArgs args, InvokeOptions? opts = null)
        public static Output<GetServicesResult> Invoke(GetServicesInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetServicesResult> getServices(GetServicesArgs args, InvokeOptions options)
    public static Output<GetServicesResult> getServices(GetServicesArgs args, InvokeOptions options)
    
    fn::invoke:
      function: zenduty:index/getServices:getServices
      arguments:
        # arguments dictionary

    The following arguments are supported:

    TeamId string
    The UniqueID of the team to query.
    Id string
    ServiceId string
    The UniqueID of the service to query.along with team id
    TeamId string
    The UniqueID of the team to query.
    Id string
    ServiceId string
    The UniqueID of the service to query.along with team id
    teamId String
    The UniqueID of the team to query.
    id String
    serviceId String
    The UniqueID of the service to query.along with team id
    teamId string
    The UniqueID of the team to query.
    id string
    serviceId string
    The UniqueID of the service to query.along with team id
    team_id str
    The UniqueID of the team to query.
    id str
    service_id str
    The UniqueID of the service to query.along with team id
    teamId String
    The UniqueID of the team to query.
    id String
    serviceId String
    The UniqueID of the service to query.along with team id

    getServices Result

    The following output properties are available:

    Id string
    Services List<GetServicesService>
    TeamId string
    The unique_id of the team.
    ServiceId string
    Id string
    Services []GetServicesService
    TeamId string
    The unique_id of the team.
    ServiceId string
    id String
    services List<GetServicesService>
    teamId String
    The unique_id of the team.
    serviceId String
    id string
    services GetServicesService[]
    teamId string
    The unique_id of the team.
    serviceId string
    id str
    services Sequence[GetServicesService]
    team_id str
    The unique_id of the team.
    service_id str
    id String
    services List<Property Map>
    teamId String
    The unique_id of the team.
    serviceId String

    Supporting Types

    GetServicesService

    AcknowledgementTimeout double
    AutoResolveTimeout double
    Collation double
    The collation of the service.which specifes collation is enabled or not.
    CollationTime double
    The collation time of the service in seconds
    CreatedBy string
    CreationDate string
    Description string
    The description of the service.
    EscalationPolicy string
    unique_id escalation policy of the service.
    Name string
    The name of the service.
    Sla string
    Uniqueid of sla associated with the service
    Status double
    Summary string
    The summary of the service
    TaskTemplate string
    Uniqueid of task template associated with the service
    Team string
    TeamPriority string
    Uniqueid of team priority associated with the service
    UnderMaintenance bool
    The under_maintenance of the service.which specifes service is under maintenance or not.
    UniqueId string
    The unique_id of the service.
    AcknowledgementTimeout float64
    AutoResolveTimeout float64
    Collation float64
    The collation of the service.which specifes collation is enabled or not.
    CollationTime float64
    The collation time of the service in seconds
    CreatedBy string
    CreationDate string
    Description string
    The description of the service.
    EscalationPolicy string
    unique_id escalation policy of the service.
    Name string
    The name of the service.
    Sla string
    Uniqueid of sla associated with the service
    Status float64
    Summary string
    The summary of the service
    TaskTemplate string
    Uniqueid of task template associated with the service
    Team string
    TeamPriority string
    Uniqueid of team priority associated with the service
    UnderMaintenance bool
    The under_maintenance of the service.which specifes service is under maintenance or not.
    UniqueId string
    The unique_id of the service.
    acknowledgementTimeout Double
    autoResolveTimeout Double
    collation Double
    The collation of the service.which specifes collation is enabled or not.
    collationTime Double
    The collation time of the service in seconds
    createdBy String
    creationDate String
    description String
    The description of the service.
    escalationPolicy String
    unique_id escalation policy of the service.
    name String
    The name of the service.
    sla String
    Uniqueid of sla associated with the service
    status Double
    summary String
    The summary of the service
    taskTemplate String
    Uniqueid of task template associated with the service
    team String
    teamPriority String
    Uniqueid of team priority associated with the service
    underMaintenance Boolean
    The under_maintenance of the service.which specifes service is under maintenance or not.
    uniqueId String
    The unique_id of the service.
    acknowledgementTimeout number
    autoResolveTimeout number
    collation number
    The collation of the service.which specifes collation is enabled or not.
    collationTime number
    The collation time of the service in seconds
    createdBy string
    creationDate string
    description string
    The description of the service.
    escalationPolicy string
    unique_id escalation policy of the service.
    name string
    The name of the service.
    sla string
    Uniqueid of sla associated with the service
    status number
    summary string
    The summary of the service
    taskTemplate string
    Uniqueid of task template associated with the service
    team string
    teamPriority string
    Uniqueid of team priority associated with the service
    underMaintenance boolean
    The under_maintenance of the service.which specifes service is under maintenance or not.
    uniqueId string
    The unique_id of the service.
    acknowledgement_timeout float
    auto_resolve_timeout float
    collation float
    The collation of the service.which specifes collation is enabled or not.
    collation_time float
    The collation time of the service in seconds
    created_by str
    creation_date str
    description str
    The description of the service.
    escalation_policy str
    unique_id escalation policy of the service.
    name str
    The name of the service.
    sla str
    Uniqueid of sla associated with the service
    status float
    summary str
    The summary of the service
    task_template str
    Uniqueid of task template associated with the service
    team str
    team_priority str
    Uniqueid of team priority associated with the service
    under_maintenance bool
    The under_maintenance of the service.which specifes service is under maintenance or not.
    unique_id str
    The unique_id of the service.
    acknowledgementTimeout Number
    autoResolveTimeout Number
    collation Number
    The collation of the service.which specifes collation is enabled or not.
    collationTime Number
    The collation time of the service in seconds
    createdBy String
    creationDate String
    description String
    The description of the service.
    escalationPolicy String
    unique_id escalation policy of the service.
    name String
    The name of the service.
    sla String
    Uniqueid of sla associated with the service
    status Number
    summary String
    The summary of the service
    taskTemplate String
    Uniqueid of task template associated with the service
    team String
    teamPriority String
    Uniqueid of team priority associated with the service
    underMaintenance Boolean
    The under_maintenance of the service.which specifes service is under maintenance or not.
    uniqueId String
    The unique_id of the service.

    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