UNPKG

@pulumi/harness

Version:

A Pulumi package for creating and managing Harness resources.

167 lines (166 loc) 4.17 kB
import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * Data source for retrieving a Harness User Group. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as harness from "@pulumi/harness"; * * const exampleById = harness.platform.getUsergroup({ * identifier: "identifier", * orgId: "org_id", * projectId: "project_id", * }); * const exampleByName = harness.platform.getUsergroup({ * name: "name", * orgId: "org_id", * projectId: "project_id", * }); * ``` */ export declare function getUsergroup(args?: GetUsergroupArgs, opts?: pulumi.InvokeOptions): Promise<GetUsergroupResult>; /** * A collection of arguments for invoking getUsergroup. */ export interface GetUsergroupArgs { /** * Unique identifier of the resource. */ identifier?: string; /** * Name of the resource. */ name?: string; /** * List of notification settings. */ notificationConfigs?: inputs.platform.GetUsergroupNotificationConfig[]; /** * Unique identifier of the organization. */ orgId?: string; /** * Unique identifier of the project. */ projectId?: string; } /** * A collection of values returned by getUsergroup. */ export interface GetUsergroupResult { /** * Description of the resource. */ readonly description: string; /** * Whether the user group is externally managed. */ readonly externallyManaged: boolean; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Unique identifier of the resource. */ readonly identifier?: string; /** * Name of the linked SSO. */ readonly linkedSsoDisplayName: string; /** * The SSO account ID that the user group is linked to. */ readonly linkedSsoId: string; /** * Type of linked SSO. */ readonly linkedSsoType: string; /** * Name of the resource. */ readonly name?: string; /** * List of notification settings. */ readonly notificationConfigs?: outputs.platform.GetUsergroupNotificationConfig[]; /** * Unique identifier of the organization. */ readonly orgId?: string; /** * Unique identifier of the project. */ readonly projectId?: string; /** * Identifier of the userGroup in SSO. */ readonly ssoGroupId: string; /** * Name of the SSO userGroup. */ readonly ssoGroupName: string; /** * Whether sso is linked or not. */ readonly ssoLinked: boolean; /** * Tags to associate with the resource. */ readonly tags: string[]; /** * List of users in the UserGroup. */ readonly users: string[]; } /** * Data source for retrieving a Harness User Group. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as harness from "@pulumi/harness"; * * const exampleById = harness.platform.getUsergroup({ * identifier: "identifier", * orgId: "org_id", * projectId: "project_id", * }); * const exampleByName = harness.platform.getUsergroup({ * name: "name", * orgId: "org_id", * projectId: "project_id", * }); * ``` */ export declare function getUsergroupOutput(args?: GetUsergroupOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetUsergroupResult>; /** * A collection of arguments for invoking getUsergroup. */ export interface GetUsergroupOutputArgs { /** * Unique identifier of the resource. */ identifier?: pulumi.Input<string>; /** * Name of the resource. */ name?: pulumi.Input<string>; /** * List of notification settings. */ notificationConfigs?: pulumi.Input<pulumi.Input<inputs.platform.GetUsergroupNotificationConfigArgs>[]>; /** * Unique identifier of the organization. */ orgId?: pulumi.Input<string>; /** * Unique identifier of the project. */ projectId?: pulumi.Input<string>; }