import * as pulumi from "@pulumi/pulumi"; /** * ServiceGroup data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * // Look up a single service group object by its ID. * // The ID used here is from the terraform.tfstate file. * const scmServiceGroupDs = scm.getServiceGroup({ * id: "dc430d61-52ca-44bc-a797-e65123a94134", * }); * export const serviceGroupDsResult = scmServiceGroupDs; * ``` */ export declare function getServiceGroup(args: GetServiceGroupArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getServiceGroup. */ export interface GetServiceGroupArgs { /** * The device in which the resource is defined */ device?: string; folder?: string; /** * The UUID of the service group */ id: string; name?: string; snippet?: string; } /** * A collection of values returned by getServiceGroup. */ export interface GetServiceGroupResult { /** * The device in which the resource is defined */ readonly device: string; readonly folder: string; /** * The UUID of the service group */ readonly id: string; readonly members: string[]; readonly name: string; readonly snippet: string; readonly tags: string[]; readonly tfid: string; } /** * ServiceGroup data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * // Look up a single service group object by its ID. * // The ID used here is from the terraform.tfstate file. * const scmServiceGroupDs = scm.getServiceGroup({ * id: "dc430d61-52ca-44bc-a797-e65123a94134", * }); * export const serviceGroupDsResult = scmServiceGroupDs; * ``` */ export declare function getServiceGroupOutput(args: GetServiceGroupOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getServiceGroup. */ export interface GetServiceGroupOutputArgs { /** * The device in which the resource is defined */ device?: pulumi.Input; folder?: pulumi.Input; /** * The UUID of the service group */ id: pulumi.Input; name?: pulumi.Input; snippet?: pulumi.Input; } //# sourceMappingURL=getServiceGroup.d.ts.map