Viewing docs for zenduty 1.0.6
published on Wednesday, Sep 3, 2025 by zenduty
published on Wednesday, Sep 3, 2025 by zenduty
Viewing docs for zenduty 1.0.6
published on Wednesday, Sep 3, 2025 by zenduty
published on Wednesday, Sep 3, 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 dictionaryThe following arguments are supported:
- 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
getServices Result
The following output properties are available:
- Id string
- Services
List<Get
Services Service> - Team
Id string - The unique_id of the team.
- Service
Id string
- Id string
- Services
[]Get
Services Service - Team
Id string - The unique_id of the team.
- Service
Id string
- id String
- services
List<Get
Services Service> - team
Id String - The unique_id of the team.
- service
Id String
- id string
- services
Get
Services Service[] - team
Id string - The unique_id of the team.
- service
Id string
- id str
- services
Sequence[Get
Services Service] - team_
id str - The unique_id of the team.
- service_
id str
- id String
- services List<Property Map>
- team
Id String - The unique_id of the team.
- service
Id String
Supporting Types
GetServicesService
- Acknowledgement
Timeout double - Auto
Resolve doubleTimeout - Collation double
- The collation of the service.which specifes collation is enabled or not.
- Collation
Time double - The collation time of the service in seconds
- Created
By string - Creation
Date string - Description string
- The description of the service.
- Escalation
Policy 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
- Task
Template string - Uniqueid of task template associated with the service
- Team string
- Team
Priority string - 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 string - The unique_id of the service.
- Acknowledgement
Timeout float64 - Auto
Resolve float64Timeout - Collation float64
- The collation of the service.which specifes collation is enabled or not.
- Collation
Time float64 - The collation time of the service in seconds
- Created
By string - Creation
Date string - Description string
- The description of the service.
- Escalation
Policy 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
- Task
Template string - Uniqueid of task template associated with the service
- Team string
- Team
Priority string - 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 string - The unique_id of the service.
- acknowledgement
Timeout Double - auto
Resolve DoubleTimeout - collation Double
- The collation of the service.which specifes collation is enabled or not.
- collation
Time Double - The collation time of the service in seconds
- created
By String - creation
Date String - description String
- The description of the service.
- escalation
Policy 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
- task
Template String - Uniqueid of task template associated with the service
- team String
- team
Priority String - Uniqueid of team priority associated with the service
- under
Maintenance Boolean - The under_maintenance of the service.which specifes service is under maintenance or not.
- unique
Id String - The unique_id of the service.
- acknowledgement
Timeout number - auto
Resolve numberTimeout - collation number
- The collation of the service.which specifes collation is enabled or not.
- collation
Time number - The collation time of the service in seconds
- created
By string - creation
Date string - description string
- The description of the service.
- escalation
Policy 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
- task
Template string - Uniqueid of task template associated with the service
- team string
- team
Priority string - Uniqueid of team priority associated with the service
- under
Maintenance boolean - The under_maintenance of the service.which specifes service is under maintenance or not.
- unique
Id string - The unique_id of the service.
- acknowledgement_
timeout float - auto_
resolve_ floattimeout - 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.
- acknowledgement
Timeout Number - auto
Resolve NumberTimeout - collation Number
- The collation of the service.which specifes collation is enabled or not.
- collation
Time Number - The collation time of the service in seconds
- created
By String - creation
Date String - description String
- The description of the service.
- escalation
Policy 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
- task
Template String - Uniqueid of task template associated with the service
- team String
- team
Priority String - Uniqueid of team priority associated with the service
- under
Maintenance Boolean - The under_maintenance of the service.which specifes service is under maintenance or not.
- unique
Id String - The unique_id of the service.
Package Details
- Repository
- zenduty zenduty/terraform-provider-zenduty
- License
- Notes
- This Pulumi package is based on the
zendutyTerraform Provider.
Viewing docs for zenduty 1.0.6
published on Wednesday, Sep 3, 2025 by zenduty
published on Wednesday, Sep 3, 2025 by zenduty
