Dynatrace v0.10.0 published on Friday, Jun 7, 2024 by Pulumiverse
dynatrace.getService
Explore with Pulumi AI
!> The data source API endpoint has been deprecated, please use dynatrace.getEntity with entity type SERVICE
instead.
The service data source allows the service ID to be retrieved by its name and optionally tags / tag-value pairs.
name
queries for all services with the specified nametags
(optional) refers to the tags that need to be present for the service (inclusive)
If multiple services match the given criteria, the first result will be retrieved.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as dynatrace from "@pulumi/dynatrace";
import * as dynatrace from "@pulumiverse/dynatrace";
const test = dynatrace.getService({
name: "Example",
tags: [
"TerraformKeyTest",
"TerraformKeyValueTest=TestValue",
],
});
const _name_ = new dynatrace.KeyRequests("#name#", {service: test.then(test => test.id)});
import pulumi
import pulumi_dynatrace as dynatrace
import pulumiverse_dynatrace as dynatrace
test = dynatrace.get_service(name="Example",
tags=[
"TerraformKeyTest",
"TerraformKeyValueTest=TestValue",
])
_name_ = dynatrace.KeyRequests("#name#", service=test.id)
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumiverse/pulumi-dynatrace/sdk/go/dynatrace"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
test, err := dynatrace.GetService(ctx, &dynatrace.GetServiceArgs{
Name: "Example",
Tags: []string{
"TerraformKeyTest",
"TerraformKeyValueTest=TestValue",
},
}, nil)
if err != nil {
return err
}
_, err = dynatrace.NewKeyRequests(ctx, "#name#", &dynatrace.KeyRequestsArgs{
Service: pulumi.String(test.Id),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Dynatrace = Pulumi.Dynatrace;
using Dynatrace = Pulumiverse.Dynatrace;
return await Deployment.RunAsync(() =>
{
var test = Dynatrace.GetService.Invoke(new()
{
Name = "Example",
Tags = new[]
{
"TerraformKeyTest",
"TerraformKeyValueTest=TestValue",
},
});
var _name_ = new Dynatrace.KeyRequests("#name#", new()
{
Service = test.Apply(getServiceResult => getServiceResult.Id),
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.dynatrace.DynatraceFunctions;
import com.pulumi.dynatrace.inputs.GetServiceArgs;
import com.pulumi.dynatrace.KeyRequests;
import com.pulumi.dynatrace.KeyRequestsArgs;
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 test = DynatraceFunctions.getService(GetServiceArgs.builder()
.name("Example")
.tags(
"TerraformKeyTest",
"TerraformKeyValueTest=TestValue")
.build());
var _name_ = new KeyRequests("#name#", KeyRequestsArgs.builder()
.service(test.applyValue(getServiceResult -> getServiceResult.id()))
.build());
}
}
resources:
'#name#':
type: dynatrace:KeyRequests
properties:
service: ${test.id}
variables:
test:
fn::invoke:
Function: dynatrace:getService
Arguments:
name: Example
tags:
- TerraformKeyTest
- TerraformKeyValueTest=TestValue
Using getService
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 getService(args: GetServiceArgs, opts?: InvokeOptions): Promise<GetServiceResult>
function getServiceOutput(args: GetServiceOutputArgs, opts?: InvokeOptions): Output<GetServiceResult>
def get_service(name: Optional[str] = None,
operator: Optional[str] = None,
tags: Optional[Sequence[str]] = None,
opts: Optional[InvokeOptions] = None) -> GetServiceResult
def get_service_output(name: Optional[pulumi.Input[str]] = None,
operator: Optional[pulumi.Input[str]] = None,
tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetServiceResult]
func GetService(ctx *Context, args *GetServiceArgs, opts ...InvokeOption) (*GetServiceResult, error)
func GetServiceOutput(ctx *Context, args *GetServiceOutputArgs, opts ...InvokeOption) GetServiceResultOutput
> Note: This function is named GetService
in the Go SDK.
public static class GetService
{
public static Task<GetServiceResult> InvokeAsync(GetServiceArgs args, InvokeOptions? opts = null)
public static Output<GetServiceResult> Invoke(GetServiceInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetServiceResult> getService(GetServiceArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: dynatrace:index/getService:getService
arguments:
# arguments dictionary
The following arguments are supported:
getService Result
The following output properties are available:
Package Details
- Repository
- dynatrace pulumiverse/pulumi-dynatrace
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
dynatrace
Terraform Provider.