UNPKG

@pulumiverse/dynatrace

Version:

A Pulumi package for creating and managing Dynatrace cloud resources.

123 lines (122 loc) 4.36 kB
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<pulumi.ID>, 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<boolean | undefined>; /** * If `true`, then the group has the cluster administrator rights */ readonly clusterAdmin: pulumi.Output<boolean | undefined>; /** * LDAP group names */ readonly ldapGroups: pulumi.Output<string[] | undefined>; /** * If `true`, then the group has the manage account rights */ readonly manageAccount: pulumi.Output<boolean | undefined>; /** * The name of the user group */ readonly name: pulumi.Output<string>; /** * Permissions for environments */ readonly permissions: pulumi.Output<outputs.UserGroupPermissions | undefined>; /** * 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<string[] | undefined>; /** * 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<boolean>; /** * If `true`, then the group has the cluster administrator rights */ clusterAdmin?: pulumi.Input<boolean>; /** * LDAP group names */ ldapGroups?: pulumi.Input<pulumi.Input<string>[]>; /** * If `true`, then the group has the manage account rights */ manageAccount?: pulumi.Input<boolean>; /** * The name of the user group */ name?: pulumi.Input<string>; /** * Permissions for environments */ permissions?: pulumi.Input<inputs.UserGroupPermissions>; /** * 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<pulumi.Input<string>[]>; } /** * 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<boolean>; /** * If `true`, then the group has the cluster administrator rights */ clusterAdmin?: pulumi.Input<boolean>; /** * LDAP group names */ ldapGroups?: pulumi.Input<pulumi.Input<string>[]>; /** * If `true`, then the group has the manage account rights */ manageAccount?: pulumi.Input<boolean>; /** * The name of the user group */ name?: pulumi.Input<string>; /** * Permissions for environments */ permissions?: pulumi.Input<inputs.UserGroupPermissions>; /** * 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<pulumi.Input<string>[]>; }