1. Packages
  2. MinIO
  3. API Docs
  4. IamUser
MinIO v0.15.2 published on Friday, Feb 23, 2024 by Pulumi

minio.IamUser

Explore with Pulumi AI

minio logo
MinIO v0.15.2 published on Friday, Feb 23, 2024 by Pulumi

    Example Usage

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Minio = Pulumi.Minio;
    
    return await Deployment.RunAsync(() => 
    {
        var testIamUser = new Minio.IamUser("testIamUser", new()
        {
            ForceDestroy = true,
            Tags = 
            {
                { "tag-key", "tag-value" },
            },
        });
    
        return new Dictionary<string, object?>
        {
            ["test"] = testIamUser.Id,
            ["status"] = testIamUser.Status,
            ["secret"] = testIamUser.Secret,
        };
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-minio/sdk/go/minio"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		testIamUser, err := minio.NewIamUser(ctx, "testIamUser", &minio.IamUserArgs{
    			ForceDestroy: pulumi.Bool(true),
    			Tags: pulumi.Map{
    				"tag-key": pulumi.Any("tag-value"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		ctx.Export("test", testIamUser.ID())
    		ctx.Export("status", testIamUser.Status)
    		ctx.Export("secret", testIamUser.Secret)
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.minio.IamUser;
    import com.pulumi.minio.IamUserArgs;
    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 testIamUser = new IamUser("testIamUser", IamUserArgs.builder()        
                .forceDestroy(true)
                .tags(Map.of("tag-key", "tag-value"))
                .build());
    
            ctx.export("test", testIamUser.id());
            ctx.export("status", testIamUser.status());
            ctx.export("secret", testIamUser.secret());
        }
    }
    
    import pulumi
    import pulumi_minio as minio
    
    test_iam_user = minio.IamUser("testIamUser",
        force_destroy=True,
        tags={
            "tag-key": "tag-value",
        })
    pulumi.export("test", test_iam_user.id)
    pulumi.export("status", test_iam_user.status)
    pulumi.export("secret", test_iam_user.secret)
    
    import * as pulumi from "@pulumi/pulumi";
    import * as minio from "@pulumi/minio";
    
    const testIamUser = new minio.IamUser("testIamUser", {
        forceDestroy: true,
        tags: {
            "tag-key": "tag-value",
        },
    });
    export const test = testIamUser.id;
    export const status = testIamUser.status;
    export const secret = testIamUser.secret;
    
    resources:
      testIamUser:
        type: minio:IamUser
        properties:
          forceDestroy: true
          tags:
            tag-key: tag-value
    outputs:
      test: ${testIamUser.id}
      status: ${testIamUser.status}
      secret: ${testIamUser.secret}
    

    Create IamUser Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new IamUser(name: string, args?: IamUserArgs, opts?: CustomResourceOptions);
    @overload
    def IamUser(resource_name: str,
                args: Optional[IamUserArgs] = None,
                opts: Optional[ResourceOptions] = None)
    
    @overload
    def IamUser(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                disable_user: Optional[bool] = None,
                force_destroy: Optional[bool] = None,
                name: Optional[str] = None,
                secret: Optional[str] = None,
                tags: Optional[Mapping[str, Any]] = None,
                update_secret: Optional[bool] = None)
    func NewIamUser(ctx *Context, name string, args *IamUserArgs, opts ...ResourceOption) (*IamUser, error)
    public IamUser(string name, IamUserArgs? args = null, CustomResourceOptions? opts = null)
    public IamUser(String name, IamUserArgs args)
    public IamUser(String name, IamUserArgs args, CustomResourceOptions options)
    
    type: minio:IamUser
    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 IamUserArgs
    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 IamUserArgs
    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 IamUserArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args IamUserArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args IamUserArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var iamUserResource = new Minio.IamUser("iamUserResource", new()
    {
        DisableUser = false,
        ForceDestroy = false,
        Name = "string",
        Secret = "string",
        Tags = 
        {
            { "string", "any" },
        },
        UpdateSecret = false,
    });
    
    example, err := minio.NewIamUser(ctx, "iamUserResource", &minio.IamUserArgs{
    	DisableUser:  pulumi.Bool(false),
    	ForceDestroy: pulumi.Bool(false),
    	Name:         pulumi.String("string"),
    	Secret:       pulumi.String("string"),
    	Tags: pulumi.Map{
    		"string": pulumi.Any("any"),
    	},
    	UpdateSecret: pulumi.Bool(false),
    })
    
    var iamUserResource = new IamUser("iamUserResource", IamUserArgs.builder()        
        .disableUser(false)
        .forceDestroy(false)
        .name("string")
        .secret("string")
        .tags(Map.of("string", "any"))
        .updateSecret(false)
        .build());
    
    iam_user_resource = minio.IamUser("iamUserResource",
        disable_user=False,
        force_destroy=False,
        name="string",
        secret="string",
        tags={
            "string": "any",
        },
        update_secret=False)
    
    const iamUserResource = new minio.IamUser("iamUserResource", {
        disableUser: false,
        forceDestroy: false,
        name: "string",
        secret: "string",
        tags: {
            string: "any",
        },
        updateSecret: false,
    });
    
    type: minio:IamUser
    properties:
        disableUser: false
        forceDestroy: false
        name: string
        secret: string
        tags:
            string: any
        updateSecret: false
    

    IamUser 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 IamUser resource accepts the following input properties:

    DisableUser bool
    Disable user
    ForceDestroy bool
    Delete user even if it has non-Terraform-managed IAM access keys
    Name string
    Secret string
    Tags Dictionary<string, object>
    UpdateSecret bool
    Rotate Minio User Secret Key
    DisableUser bool
    Disable user
    ForceDestroy bool
    Delete user even if it has non-Terraform-managed IAM access keys
    Name string
    Secret string
    Tags map[string]interface{}
    UpdateSecret bool
    Rotate Minio User Secret Key
    disableUser Boolean
    Disable user
    forceDestroy Boolean
    Delete user even if it has non-Terraform-managed IAM access keys
    name String
    secret String
    tags Map<String,Object>
    updateSecret Boolean
    Rotate Minio User Secret Key
    disableUser boolean
    Disable user
    forceDestroy boolean
    Delete user even if it has non-Terraform-managed IAM access keys
    name string
    secret string
    tags {[key: string]: any}
    updateSecret boolean
    Rotate Minio User Secret Key
    disable_user bool
    Disable user
    force_destroy bool
    Delete user even if it has non-Terraform-managed IAM access keys
    name str
    secret str
    tags Mapping[str, Any]
    update_secret bool
    Rotate Minio User Secret Key
    disableUser Boolean
    Disable user
    forceDestroy Boolean
    Delete user even if it has non-Terraform-managed IAM access keys
    name String
    secret String
    tags Map<Any>
    updateSecret Boolean
    Rotate Minio User Secret Key

    Outputs

    All input properties are implicitly available as output properties. Additionally, the IamUser resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Status string
    Id string
    The provider-assigned unique ID for this managed resource.
    Status string
    id String
    The provider-assigned unique ID for this managed resource.
    status String
    id string
    The provider-assigned unique ID for this managed resource.
    status string
    id str
    The provider-assigned unique ID for this managed resource.
    status str
    id String
    The provider-assigned unique ID for this managed resource.
    status String

    Look up Existing IamUser Resource

    Get an existing IamUser 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?: IamUserState, opts?: CustomResourceOptions): IamUser
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            disable_user: Optional[bool] = None,
            force_destroy: Optional[bool] = None,
            name: Optional[str] = None,
            secret: Optional[str] = None,
            status: Optional[str] = None,
            tags: Optional[Mapping[str, Any]] = None,
            update_secret: Optional[bool] = None) -> IamUser
    func GetIamUser(ctx *Context, name string, id IDInput, state *IamUserState, opts ...ResourceOption) (*IamUser, error)
    public static IamUser Get(string name, Input<string> id, IamUserState? state, CustomResourceOptions? opts = null)
    public static IamUser get(String name, Output<String> id, IamUserState 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.
    The following state arguments are supported:
    DisableUser bool
    Disable user
    ForceDestroy bool
    Delete user even if it has non-Terraform-managed IAM access keys
    Name string
    Secret string
    Status string
    Tags Dictionary<string, object>
    UpdateSecret bool
    Rotate Minio User Secret Key
    DisableUser bool
    Disable user
    ForceDestroy bool
    Delete user even if it has non-Terraform-managed IAM access keys
    Name string
    Secret string
    Status string
    Tags map[string]interface{}
    UpdateSecret bool
    Rotate Minio User Secret Key
    disableUser Boolean
    Disable user
    forceDestroy Boolean
    Delete user even if it has non-Terraform-managed IAM access keys
    name String
    secret String
    status String
    tags Map<String,Object>
    updateSecret Boolean
    Rotate Minio User Secret Key
    disableUser boolean
    Disable user
    forceDestroy boolean
    Delete user even if it has non-Terraform-managed IAM access keys
    name string
    secret string
    status string
    tags {[key: string]: any}
    updateSecret boolean
    Rotate Minio User Secret Key
    disable_user bool
    Disable user
    force_destroy bool
    Delete user even if it has non-Terraform-managed IAM access keys
    name str
    secret str
    status str
    tags Mapping[str, Any]
    update_secret bool
    Rotate Minio User Secret Key
    disableUser Boolean
    Disable user
    forceDestroy Boolean
    Delete user even if it has non-Terraform-managed IAM access keys
    name String
    secret String
    status String
    tags Map<Any>
    updateSecret Boolean
    Rotate Minio User Secret Key

    Package Details

    Repository
    MinIO pulumi/pulumi-minio
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the minio Terraform Provider.
    minio logo
    MinIO v0.15.2 published on Friday, Feb 23, 2024 by Pulumi