@pulumi/aws-native
Version:
The Pulumi AWS Cloud Control Provider enables you to build, deploy, and manage [any AWS resource that's supported by the AWS Cloud Control API](https://github.com/pulumi/pulumi-aws-native/blob/master/provider/cmd/pulumi-gen-aws-native/supported-types.txt)
47 lines (46 loc) • 1.55 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* The AWS::DevOpsAgent::Service resource registers external services (like Dynatrace, MCP servers, GitLab) for integration with DevOpsAgent.
*/
export declare function getService(args: GetServiceArgs, opts?: pulumi.InvokeOptions): Promise<GetServiceResult>;
export interface GetServiceArgs {
/**
* The unique identifier of the service
*/
serviceId: string;
}
export interface GetServiceResult {
/**
* List of accessible resources for this service
*/
readonly accessibleResources?: {
[key: string]: string;
}[];
/**
* Additional details specific to the service type
*/
readonly additionalServiceDetails?: outputs.devopsagent.ServiceAdditionalServiceDetails;
/**
* The Amazon Resource Name (ARN) of the Service.
*/
readonly arn?: string;
/**
* The unique identifier of the service
*/
readonly serviceId?: string;
/**
* An array of key-value pairs to apply to this resource.
*/
readonly tags?: outputs.Tag[];
}
/**
* The AWS::DevOpsAgent::Service resource registers external services (like Dynatrace, MCP servers, GitLab) for integration with DevOpsAgent.
*/
export declare function getServiceOutput(args: GetServiceOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetServiceResult>;
export interface GetServiceOutputArgs {
/**
* The unique identifier of the service
*/
serviceId: pulumi.Input<string>;
}