oci.FusionApps.FusionEnvironmentAdminUser
Explore with Pulumi AI
This resource provides the Fusion Environment Admin User resource in Oracle Cloud Infrastructure Fusion Apps service.
Create a FusionEnvironment admin user
Example Usage
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,
password: fusionEnvironmentAdminUserPassword,
username: fusionEnvironmentAdminUserUsername,
});
import pulumi
import pulumi_oci as oci
test_fusion_environment_admin_user = oci.fusion_apps.FusionEnvironmentAdminUser("test_fusion_environment_admin_user",
email_address=fusion_environment_admin_user_email_address,
first_name=fusion_environment_admin_user_first_name,
fusion_environment_id=test_fusion_environment["id"],
last_name=fusion_environment_admin_user_last_name,
password=fusion_environment_admin_user_password,
username=fusion_environment_admin_user_username)
package main
import (
"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/FusionApps"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := FusionApps.NewFusionEnvironmentAdminUser(ctx, "test_fusion_environment_admin_user", &FusionApps.FusionEnvironmentAdminUserArgs{
EmailAddress: pulumi.Any(fusionEnvironmentAdminUserEmailAddress),
FirstName: pulumi.Any(fusionEnvironmentAdminUserFirstName),
FusionEnvironmentId: pulumi.Any(testFusionEnvironment.Id),
LastName: pulumi.Any(fusionEnvironmentAdminUserLastName),
Password: pulumi.Any(fusionEnvironmentAdminUserPassword),
Username: pulumi.Any(fusionEnvironmentAdminUserUsername),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() =>
{
var testFusionEnvironmentAdminUser = new Oci.FusionApps.FusionEnvironmentAdminUser("test_fusion_environment_admin_user", new()
{
EmailAddress = fusionEnvironmentAdminUserEmailAddress,
FirstName = fusionEnvironmentAdminUserFirstName,
FusionEnvironmentId = testFusionEnvironment.Id,
LastName = fusionEnvironmentAdminUserLastName,
Password = fusionEnvironmentAdminUserPassword,
Username = fusionEnvironmentAdminUserUsername,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.FusionApps.FusionEnvironmentAdminUser;
import com.pulumi.oci.FusionApps.FusionEnvironmentAdminUserArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var testFusionEnvironmentAdminUser = new FusionEnvironmentAdminUser("testFusionEnvironmentAdminUser", FusionEnvironmentAdminUserArgs.builder()
.emailAddress(fusionEnvironmentAdminUserEmailAddress)
.firstName(fusionEnvironmentAdminUserFirstName)
.fusionEnvironmentId(testFusionEnvironment.id())
.lastName(fusionEnvironmentAdminUserLastName)
.password(fusionEnvironmentAdminUserPassword)
.username(fusionEnvironmentAdminUserUsername)
.build());
}
}
resources:
testFusionEnvironmentAdminUser:
type: oci:FusionApps:FusionEnvironmentAdminUser
name: test_fusion_environment_admin_user
properties:
emailAddress: ${fusionEnvironmentAdminUserEmailAddress}
firstName: ${fusionEnvironmentAdminUserFirstName}
fusionEnvironmentId: ${testFusionEnvironment.id}
lastName: ${fusionEnvironmentAdminUserLastName}
password: ${fusionEnvironmentAdminUserPassword}
username: ${fusionEnvironmentAdminUserUsername}
Create FusionEnvironmentAdminUser Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new FusionEnvironmentAdminUser(name: string, args: FusionEnvironmentAdminUserArgs, opts?: CustomResourceOptions);
@overload
def FusionEnvironmentAdminUser(resource_name: str,
args: FusionEnvironmentAdminUserArgs,
opts: Optional[ResourceOptions] = None)
@overload
def FusionEnvironmentAdminUser(resource_name: str,
opts: Optional[ResourceOptions] = None,
email_address: Optional[str] = None,
first_name: Optional[str] = None,
fusion_environment_id: Optional[str] = None,
last_name: Optional[str] = None,
password: Optional[str] = None,
username: Optional[str] = None)
func NewFusionEnvironmentAdminUser(ctx *Context, name string, args FusionEnvironmentAdminUserArgs, opts ...ResourceOption) (*FusionEnvironmentAdminUser, error)
public FusionEnvironmentAdminUser(string name, FusionEnvironmentAdminUserArgs args, CustomResourceOptions? opts = null)
public FusionEnvironmentAdminUser(String name, FusionEnvironmentAdminUserArgs args)
public FusionEnvironmentAdminUser(String name, FusionEnvironmentAdminUserArgs args, CustomResourceOptions options)
type: oci:FusionApps:FusionEnvironmentAdminUser
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args FusionEnvironmentAdminUserArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args FusionEnvironmentAdminUserArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args FusionEnvironmentAdminUserArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args FusionEnvironmentAdminUserArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args FusionEnvironmentAdminUserArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var fusionEnvironmentAdminUserResource = new Oci.FusionApps.FusionEnvironmentAdminUser("fusionEnvironmentAdminUserResource", new()
{
EmailAddress = "string",
FirstName = "string",
FusionEnvironmentId = "string",
LastName = "string",
Password = "string",
Username = "string",
});
example, err := FusionApps.NewFusionEnvironmentAdminUser(ctx, "fusionEnvironmentAdminUserResource", &FusionApps.FusionEnvironmentAdminUserArgs{
EmailAddress: pulumi.String("string"),
FirstName: pulumi.String("string"),
FusionEnvironmentId: pulumi.String("string"),
LastName: pulumi.String("string"),
Password: pulumi.String("string"),
Username: pulumi.String("string"),
})
var fusionEnvironmentAdminUserResource = new FusionEnvironmentAdminUser("fusionEnvironmentAdminUserResource", FusionEnvironmentAdminUserArgs.builder()
.emailAddress("string")
.firstName("string")
.fusionEnvironmentId("string")
.lastName("string")
.password("string")
.username("string")
.build());
fusion_environment_admin_user_resource = oci.fusion_apps.FusionEnvironmentAdminUser("fusionEnvironmentAdminUserResource",
email_address="string",
first_name="string",
fusion_environment_id="string",
last_name="string",
password="string",
username="string")
const fusionEnvironmentAdminUserResource = new oci.fusionapps.FusionEnvironmentAdminUser("fusionEnvironmentAdminUserResource", {
emailAddress: "string",
firstName: "string",
fusionEnvironmentId: "string",
lastName: "string",
password: "string",
username: "string",
});
type: oci:FusionApps:FusionEnvironmentAdminUser
properties:
emailAddress: string
firstName: string
fusionEnvironmentId: string
lastName: string
password: string
username: string
FusionEnvironmentAdminUser Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The FusionEnvironmentAdminUser resource accepts the following input properties:
- Email
Address string - The email address for the administrator.
- First
Name string - The administrator's first name.
- Fusion
Environment stringId - unique FusionEnvironment identifier
- Last
Name string - The administrator's last name.
- Password string
- The password for the administrator.
- Username string
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
- Email
Address string - The email address for the administrator.
- First
Name string - The administrator's first name.
- Fusion
Environment stringId - unique FusionEnvironment identifier
- Last
Name string - The administrator's last name.
- Password string
- The password for the administrator.
- Username string
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
- email
Address String - The email address for the administrator.
- first
Name String - The administrator's first name.
- fusion
Environment StringId - unique FusionEnvironment identifier
- last
Name String - The administrator's last name.
- password String
- The password for the administrator.
- username String
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
- email
Address string - The email address for the administrator.
- first
Name string - The administrator's first name.
- fusion
Environment stringId - unique FusionEnvironment identifier
- last
Name string - The administrator's last name.
- password string
- The password for the administrator.
- username string
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
- email_
address str - The email address for the administrator.
- first_
name str - The administrator's first name.
- fusion_
environment_ strid - unique FusionEnvironment identifier
- last_
name str - The administrator's last name.
- password str
- The password for the administrator.
- username str
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
- email
Address String - The email address for the administrator.
- first
Name String - The administrator's first name.
- fusion
Environment StringId - unique FusionEnvironment identifier
- last
Name String - The administrator's last name.
- password String
- The password for the administrator.
- username String
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
Outputs
All input properties are implicitly available as output properties. Additionally, the FusionEnvironmentAdminUser resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Items
List<Fusion
Environment Admin User Item> - A page of AdminUserSummary objects.
- Id string
- The provider-assigned unique ID for this managed resource.
- Items
[]Fusion
Environment Admin User Item - A page of AdminUserSummary objects.
- id String
- The provider-assigned unique ID for this managed resource.
- items
List<Fusion
Environment Admin User Item> - A page of AdminUserSummary objects.
- id string
- The provider-assigned unique ID for this managed resource.
- items
Fusion
Environment Admin User Item[] - A page of AdminUserSummary objects.
- id str
- The provider-assigned unique ID for this managed resource.
- items
Sequence[fusionapps.
Fusion Environment Admin User Item] - A page of AdminUserSummary objects.
- id String
- The provider-assigned unique ID for this managed resource.
- items List<Property Map>
- A page of AdminUserSummary objects.
Look up Existing FusionEnvironmentAdminUser Resource
Get an existing FusionEnvironmentAdminUser resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: FusionEnvironmentAdminUserState, opts?: CustomResourceOptions): FusionEnvironmentAdminUser
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
email_address: Optional[str] = None,
first_name: Optional[str] = None,
fusion_environment_id: Optional[str] = None,
items: Optional[Sequence[_fusionapps.FusionEnvironmentAdminUserItemArgs]] = None,
last_name: Optional[str] = None,
password: Optional[str] = None,
username: Optional[str] = None) -> FusionEnvironmentAdminUser
func GetFusionEnvironmentAdminUser(ctx *Context, name string, id IDInput, state *FusionEnvironmentAdminUserState, opts ...ResourceOption) (*FusionEnvironmentAdminUser, error)
public static FusionEnvironmentAdminUser Get(string name, Input<string> id, FusionEnvironmentAdminUserState? state, CustomResourceOptions? opts = null)
public static FusionEnvironmentAdminUser get(String name, Output<String> id, FusionEnvironmentAdminUserState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Email
Address string - The email address for the administrator.
- First
Name string - The administrator's first name.
- Fusion
Environment stringId - unique FusionEnvironment identifier
- Items
List<Fusion
Environment Admin User Item> - A page of AdminUserSummary objects.
- Last
Name string - The administrator's last name.
- Password string
- The password for the administrator.
- Username string
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
- Email
Address string - The email address for the administrator.
- First
Name string - The administrator's first name.
- Fusion
Environment stringId - unique FusionEnvironment identifier
- Items
[]Fusion
Environment Admin User Item Args - A page of AdminUserSummary objects.
- Last
Name string - The administrator's last name.
- Password string
- The password for the administrator.
- Username string
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
- email
Address String - The email address for the administrator.
- first
Name String - The administrator's first name.
- fusion
Environment StringId - unique FusionEnvironment identifier
- items
List<Fusion
Environment Admin User Item> - A page of AdminUserSummary objects.
- last
Name String - The administrator's last name.
- password String
- The password for the administrator.
- username String
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
- email
Address string - The email address for the administrator.
- first
Name string - The administrator's first name.
- fusion
Environment stringId - unique FusionEnvironment identifier
- items
Fusion
Environment Admin User Item[] - A page of AdminUserSummary objects.
- last
Name string - The administrator's last name.
- password string
- The password for the administrator.
- username string
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
- email_
address str - The email address for the administrator.
- first_
name str - The administrator's first name.
- fusion_
environment_ strid - unique FusionEnvironment identifier
- items
Sequence[fusionapps.
Fusion Environment Admin User Item Args] - A page of AdminUserSummary objects.
- last_
name str - The administrator's last name.
- password str
- The password for the administrator.
- username str
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
- email
Address String - The email address for the administrator.
- first
Name String - The administrator's first name.
- fusion
Environment StringId - unique FusionEnvironment identifier
- items List<Property Map>
- A page of AdminUserSummary objects.
- last
Name String - The administrator's last name.
- password String
- The password for the administrator.
- username String
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
Supporting Types
FusionEnvironmentAdminUserItem, FusionEnvironmentAdminUserItemArgs
- Email
Address string - The email address for the administrator.
- First
Name string - The administrator's first name.
- Last
Name string - The administrator's last name.
- Username string
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
- Email
Address string - The email address for the administrator.
- First
Name string - The administrator's first name.
- Last
Name string - The administrator's last name.
- Username string
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
- email
Address String - The email address for the administrator.
- first
Name String - The administrator's first name.
- last
Name String - The administrator's last name.
- username String
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
- email
Address string - The email address for the administrator.
- first
Name string - The administrator's first name.
- last
Name string - The administrator's last name.
- username string
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
- email_
address str - The email address for the administrator.
- first_
name str - The administrator's first name.
- last_
name str - The administrator's last name.
- username str
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
- email
Address String - The email address for the administrator.
- first
Name String - The administrator's first name.
- last
Name String - The administrator's last name.
- username String
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
Import
FusionEnvironmentAdminUsers can be imported using the id
, e.g.
$ pulumi import oci:FusionApps/fusionEnvironmentAdminUser:FusionEnvironmentAdminUser test_fusion_environment_admin_user "fusionEnvironments/{fusionEnvironmentId}/adminUsers/{adminUsername}"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.