import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; export declare class UserGroup extends pulumi.CustomResource { /** * Get an existing UserGroup resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: UserGroupState, opts?: pulumi.CustomResourceOptions): UserGroup; /** * Returns true if the given object is an instance of UserGroup. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is UserGroup; /** * If `true`, then the group has the access account rights */ readonly accessAccount: pulumi.Output; /** * If `true`, then the group has the cluster administrator rights */ readonly clusterAdmin: pulumi.Output; /** * LDAP group names */ readonly ldapGroups: pulumi.Output; /** * If `true`, then the group has the manage account rights */ readonly manageAccount: pulumi.Output; /** * The name of the user group */ readonly name: pulumi.Output; /** * Permissions for environments */ readonly permissions: pulumi.Output; /** * SSO group names. If defined it's used to map SSO group name to Dynatrace group name, otherwise mapping is done by group name */ readonly ssoGroups: pulumi.Output; /** * Create a UserGroup resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args?: UserGroupArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering UserGroup resources. */ export interface UserGroupState { /** * If `true`, then the group has the access account rights */ accessAccount?: pulumi.Input; /** * If `true`, then the group has the cluster administrator rights */ clusterAdmin?: pulumi.Input; /** * LDAP group names */ ldapGroups?: pulumi.Input[]>; /** * If `true`, then the group has the manage account rights */ manageAccount?: pulumi.Input; /** * The name of the user group */ name?: pulumi.Input; /** * Permissions for environments */ permissions?: pulumi.Input; /** * SSO group names. If defined it's used to map SSO group name to Dynatrace group name, otherwise mapping is done by group name */ ssoGroups?: pulumi.Input[]>; } /** * The set of arguments for constructing a UserGroup resource. */ export interface UserGroupArgs { /** * If `true`, then the group has the access account rights */ accessAccount?: pulumi.Input; /** * If `true`, then the group has the cluster administrator rights */ clusterAdmin?: pulumi.Input; /** * LDAP group names */ ldapGroups?: pulumi.Input[]>; /** * If `true`, then the group has the manage account rights */ manageAccount?: pulumi.Input; /** * The name of the user group */ name?: pulumi.Input; /** * Permissions for environments */ permissions?: pulumi.Input; /** * SSO group names. If defined it's used to map SSO group name to Dynatrace group name, otherwise mapping is done by group name */ ssoGroups?: pulumi.Input[]>; }