import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This resource provides the Fusion Environment Admin User resource in Oracle Cloud Infrastructure Fusion Apps service. * Api doc link for the resource: https://docs.oracle.com/iaas/api/#/en/fusion-applications/latest/FusionEnvironmentAdminUser * * Example terraform configs related to the resource : https://github.com/oracle/terraform-provider-oci/tree/master/examples/fusionapps * * Create a FusionEnvironment admin user * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testFusionEnvironmentAdminUser = new oci.fusionapps.FusionEnvironmentAdminUser("test_fusion_environment_admin_user", { * emailAddress: fusionEnvironmentAdminUserEmailAddress, * firstName: fusionEnvironmentAdminUserFirstName, * fusionEnvironmentId: testFusionEnvironment.id, * lastName: fusionEnvironmentAdminUserLastName, * username: fusionEnvironmentAdminUserUsername, * }); * ``` * * ## Import * * FusionEnvironmentAdminUsers can be imported using the `id`, e.g. * * ```sh * $ pulumi import oci:FusionApps/fusionEnvironmentAdminUser:FusionEnvironmentAdminUser test_fusion_environment_admin_user "fusionEnvironments/{fusionEnvironmentId}/adminUsers/{adminUsername}" * ``` */ export declare class FusionEnvironmentAdminUser extends pulumi.CustomResource { /** * Get an existing FusionEnvironmentAdminUser 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?: FusionEnvironmentAdminUserState, opts?: pulumi.CustomResourceOptions): FusionEnvironmentAdminUser; /** * Returns true if the given object is an instance of FusionEnvironmentAdminUser. 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 FusionEnvironmentAdminUser; /** * The email address for the administrator. */ readonly emailAddress: pulumi.Output; /** * The administrator's first name. */ readonly firstName: pulumi.Output; /** * unique FusionEnvironment identifier */ readonly fusionEnvironmentId: pulumi.Output; /** * A page of AdminUserSummary objects. */ readonly items: pulumi.Output; /** * The administrator's last name. */ readonly lastName: pulumi.Output; /** * The username for the administrator. * * ** IMPORTANT ** * Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values */ readonly username: pulumi.Output; /** * Create a FusionEnvironmentAdminUser 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: FusionEnvironmentAdminUserArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering FusionEnvironmentAdminUser resources. */ export interface FusionEnvironmentAdminUserState { /** * The email address for the administrator. */ emailAddress?: pulumi.Input; /** * The administrator's first name. */ firstName?: pulumi.Input; /** * unique FusionEnvironment identifier */ fusionEnvironmentId?: pulumi.Input; /** * A page of AdminUserSummary objects. */ items?: pulumi.Input[] | undefined>; /** * The administrator's last name. */ lastName?: pulumi.Input; /** * The username for the administrator. * * ** IMPORTANT ** * Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values */ username?: pulumi.Input; } /** * The set of arguments for constructing a FusionEnvironmentAdminUser resource. */ export interface FusionEnvironmentAdminUserArgs { /** * The email address for the administrator. */ emailAddress: pulumi.Input; /** * The administrator's first name. */ firstName: pulumi.Input; /** * unique FusionEnvironment identifier */ fusionEnvironmentId: pulumi.Input; /** * The administrator's last name. */ lastName: pulumi.Input; /** * The username for the administrator. * * ** IMPORTANT ** * Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values */ username: pulumi.Input; } //# sourceMappingURL=fusionEnvironmentAdminUser.d.ts.map