All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.aws.storagegateway.kotlin.FileSystemAssociation.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 6.57.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.aws.storagegateway.kotlin

import com.pulumi.aws.storagegateway.kotlin.outputs.FileSystemAssociationCacheAttributes
import com.pulumi.aws.storagegateway.kotlin.outputs.FileSystemAssociationCacheAttributes.Companion.toKotlin
import com.pulumi.core.Output
import com.pulumi.kotlin.KotlinCustomResource
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.ResourceMapper
import com.pulumi.kotlin.options.CustomResourceOptions
import com.pulumi.kotlin.options.CustomResourceOptionsBuilder
import com.pulumi.resources.Resource
import kotlin.Boolean
import kotlin.Deprecated
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.Map

/**
 * Builder for [FileSystemAssociation].
 */
@PulumiTagMarker
public class FileSystemAssociationResourceBuilder internal constructor() {
    public var name: String? = null

    public var args: FileSystemAssociationArgs = FileSystemAssociationArgs()

    public var opts: CustomResourceOptions = CustomResourceOptions()

    /**
     * @param name The _unique_ name of the resulting resource.
     */
    public fun name(`value`: String) {
        this.name = value
    }

    /**
     * @param block The arguments to use to populate this resource's properties.
     */
    public suspend fun args(block: suspend FileSystemAssociationArgsBuilder.() -> Unit) {
        val builder = FileSystemAssociationArgsBuilder()
        block(builder)
        this.args = builder.build()
    }

    /**
     * @param block A bag of options that control this resource's behavior.
     */
    public suspend fun opts(block: suspend CustomResourceOptionsBuilder.() -> Unit) {
        this.opts = com.pulumi.kotlin.options.CustomResourceOptions.opts(block)
    }

    internal fun build(): FileSystemAssociation {
        val builtJavaResource =
            com.pulumi.aws.storagegateway.FileSystemAssociation(
                this.name,
                this.args.toJava(),
                this.opts.toJava(),
            )
        return FileSystemAssociation(builtJavaResource)
    }
}

/**
 * Associate an Amazon FSx file system with the FSx File Gateway. After the association process is complete, the file shares on the Amazon FSx file system are available for access through the gateway. This operation only supports the FSx File Gateway type.
 * [FSx File Gateway requirements](https://docs.aws.amazon.com/filegateway/latest/filefsxw/Requirements.html).
 * ## Example Usage
 * 
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as aws from "@pulumi/aws";
 * const example = new aws.storagegateway.FileSystemAssociation("example", {
 *     gatewayArn: exampleAwsStoragegatewayGateway.arn,
 *     locationArn: exampleAwsFsxWindowsFileSystem.arn,
 *     username: "Admin",
 *     password: "avoid-plaintext-passwords",
 *     auditDestinationArn: exampleAwsS3Bucket.arn,
 * });
 * ```
 * ```python
 * import pulumi
 * import pulumi_aws as aws
 * example = aws.storagegateway.FileSystemAssociation("example",
 *     gateway_arn=example_aws_storagegateway_gateway["arn"],
 *     location_arn=example_aws_fsx_windows_file_system["arn"],
 *     username="Admin",
 *     password="avoid-plaintext-passwords",
 *     audit_destination_arn=example_aws_s3_bucket["arn"])
 * ```
 * ```csharp
 * using System.Collections.Generic;
 * using System.Linq;
 * using Pulumi;
 * using Aws = Pulumi.Aws;
 * return await Deployment.RunAsync(() =>
 * {
 *     var example = new Aws.StorageGateway.FileSystemAssociation("example", new()
 *     {
 *         GatewayArn = exampleAwsStoragegatewayGateway.Arn,
 *         LocationArn = exampleAwsFsxWindowsFileSystem.Arn,
 *         Username = "Admin",
 *         Password = "avoid-plaintext-passwords",
 *         AuditDestinationArn = exampleAwsS3Bucket.Arn,
 *     });
 * });
 * ```
 * ```go
 * package main
 * import (
 * 	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/storagegateway"
 * 	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
 * )
 * func main() {
 * 	pulumi.Run(func(ctx *pulumi.Context) error {
 * 		_, err := storagegateway.NewFileSystemAssociation(ctx, "example", &storagegateway.FileSystemAssociationArgs{
 * 			GatewayArn:          pulumi.Any(exampleAwsStoragegatewayGateway.Arn),
 * 			LocationArn:         pulumi.Any(exampleAwsFsxWindowsFileSystem.Arn),
 * 			Username:            pulumi.String("Admin"),
 * 			Password:            pulumi.String("avoid-plaintext-passwords"),
 * 			AuditDestinationArn: pulumi.Any(exampleAwsS3Bucket.Arn),
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		return nil
 * 	})
 * }
 * ```
 * ```java
 * package generated_program;
 * import com.pulumi.Context;
 * import com.pulumi.Pulumi;
 * import com.pulumi.core.Output;
 * import com.pulumi.aws.storagegateway.FileSystemAssociation;
 * import com.pulumi.aws.storagegateway.FileSystemAssociationArgs;
 * 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 example = new FileSystemAssociation("example", FileSystemAssociationArgs.builder()
 *             .gatewayArn(exampleAwsStoragegatewayGateway.arn())
 *             .locationArn(exampleAwsFsxWindowsFileSystem.arn())
 *             .username("Admin")
 *             .password("avoid-plaintext-passwords")
 *             .auditDestinationArn(exampleAwsS3Bucket.arn())
 *             .build());
 *     }
 * }
 * ```
 * ```yaml
 * resources:
 *   example:
 *     type: aws:storagegateway:FileSystemAssociation
 *     properties:
 *       gatewayArn: ${exampleAwsStoragegatewayGateway.arn}
 *       locationArn: ${exampleAwsFsxWindowsFileSystem.arn}
 *       username: Admin
 *       password: avoid-plaintext-passwords
 *       auditDestinationArn: ${exampleAwsS3Bucket.arn}
 * ```
 * 
 * ## Required Services Example
 * 
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as aws from "@pulumi/aws";
 * const awsServiceStoragegatewayAmiFILES3Latest = aws.ssm.getParameter({
 *     name: "/aws/service/storagegateway/ami/FILE_S3/latest",
 * });
 * const test = new aws.ec2.Instance("test", {
 *     ami: awsServiceStoragegatewayAmiFILES3Latest.then(awsServiceStoragegatewayAmiFILES3Latest => awsServiceStoragegatewayAmiFILES3Latest.value),
 *     associatePublicIpAddress: true,
 *     instanceType: aws.ec2.InstanceType[available.instanceType],
 *     vpcSecurityGroupIds: [testAwsSecurityGroup.id],
 *     subnetId: testAwsSubnet[0].id,
 * }, {
 *     dependsOn: [
 *         testAwsRoute,
 *         testAwsVpcDhcpOptionsAssociation,
 *     ],
 * });
 * const testGateway = new aws.storagegateway.Gateway("test", {
 *     gatewayIpAddress: test.publicIp,
 *     gatewayName: "test-sgw",
 *     gatewayTimezone: "GMT",
 *     gatewayType: "FILE_FSX_SMB",
 *     smbActiveDirectorySettings: {
 *         domainName: testAwsDirectoryServiceDirectory.name,
 *         password: testAwsDirectoryServiceDirectory.password,
 *         username: "Admin",
 *     },
 * });
 * const testWindowsFileSystem = new aws.fsx.WindowsFileSystem("test", {
 *     activeDirectoryId: testAwsDirectoryServiceDirectory.id,
 *     securityGroupIds: [testAwsSecurityGroup.id],
 *     skipFinalBackup: true,
 *     storageCapacity: 32,
 *     subnetIds: [testAwsSubnet[0].id],
 *     throughputCapacity: 8,
 * });
 * const fsx = new aws.storagegateway.FileSystemAssociation("fsx", {
 *     gatewayArn: testGateway.arn,
 *     locationArn: testWindowsFileSystem.arn,
 *     username: "Admin",
 *     password: testAwsDirectoryServiceDirectory.password,
 *     cacheAttributes: {
 *         cacheStaleTimeoutInSeconds: 400,
 *     },
 *     auditDestinationArn: testAwsCloudwatchLogGroup.arn,
 * });
 * ```
 * ```python
 * import pulumi
 * import pulumi_aws as aws
 * aws_service_storagegateway_ami_files3_latest = aws.ssm.get_parameter(name="/aws/service/storagegateway/ami/FILE_S3/latest")
 * test = aws.ec2.Instance("test",
 *     ami=aws_service_storagegateway_ami_files3_latest.value,
 *     associate_public_ip_address=True,
 *     instance_type=aws.ec2.InstanceType(available["instanceType"]),
 *     vpc_security_group_ids=[test_aws_security_group["id"]],
 *     subnet_id=test_aws_subnet[0]["id"],
 *     opts = pulumi.ResourceOptions(depends_on=[
 *             test_aws_route,
 *             test_aws_vpc_dhcp_options_association,
 *         ]))
 * test_gateway = aws.storagegateway.Gateway("test",
 *     gateway_ip_address=test.public_ip,
 *     gateway_name="test-sgw",
 *     gateway_timezone="GMT",
 *     gateway_type="FILE_FSX_SMB",
 *     smb_active_directory_settings={
 *         "domain_name": test_aws_directory_service_directory["name"],
 *         "password": test_aws_directory_service_directory["password"],
 *         "username": "Admin",
 *     })
 * test_windows_file_system = aws.fsx.WindowsFileSystem("test",
 *     active_directory_id=test_aws_directory_service_directory["id"],
 *     security_group_ids=[test_aws_security_group["id"]],
 *     skip_final_backup=True,
 *     storage_capacity=32,
 *     subnet_ids=[test_aws_subnet[0]["id"]],
 *     throughput_capacity=8)
 * fsx = aws.storagegateway.FileSystemAssociation("fsx",
 *     gateway_arn=test_gateway.arn,
 *     location_arn=test_windows_file_system.arn,
 *     username="Admin",
 *     password=test_aws_directory_service_directory["password"],
 *     cache_attributes={
 *         "cache_stale_timeout_in_seconds": 400,
 *     },
 *     audit_destination_arn=test_aws_cloudwatch_log_group["arn"])
 * ```
 * ```csharp
 * using System.Collections.Generic;
 * using System.Linq;
 * using Pulumi;
 * using Aws = Pulumi.Aws;
 * return await Deployment.RunAsync(() =>
 * {
 *     var awsServiceStoragegatewayAmiFILES3Latest = Aws.Ssm.GetParameter.Invoke(new()
 *     {
 *         Name = "/aws/service/storagegateway/ami/FILE_S3/latest",
 *     });
 *     var test = new Aws.Ec2.Instance("test", new()
 *     {
 *         Ami = awsServiceStoragegatewayAmiFILES3Latest.Apply(getParameterResult => getParameterResult.Value),
 *         AssociatePublicIpAddress = true,
 *         InstanceType = System.Enum.Parse(available.InstanceType),
 *         VpcSecurityGroupIds = new[]
 *         {
 *             testAwsSecurityGroup.Id,
 *         },
 *         SubnetId = testAwsSubnet[0].Id,
 *     }, new CustomResourceOptions
 *     {
 *         DependsOn =
 *         {
 *             testAwsRoute,
 *             testAwsVpcDhcpOptionsAssociation,
 *         },
 *     });
 *     var testGateway = new Aws.StorageGateway.Gateway("test", new()
 *     {
 *         GatewayIpAddress = test.PublicIp,
 *         GatewayName = "test-sgw",
 *         GatewayTimezone = "GMT",
 *         GatewayType = "FILE_FSX_SMB",
 *         SmbActiveDirectorySettings = new Aws.StorageGateway.Inputs.GatewaySmbActiveDirectorySettingsArgs
 *         {
 *             DomainName = testAwsDirectoryServiceDirectory.Name,
 *             Password = testAwsDirectoryServiceDirectory.Password,
 *             Username = "Admin",
 *         },
 *     });
 *     var testWindowsFileSystem = new Aws.Fsx.WindowsFileSystem("test", new()
 *     {
 *         ActiveDirectoryId = testAwsDirectoryServiceDirectory.Id,
 *         SecurityGroupIds = new[]
 *         {
 *             testAwsSecurityGroup.Id,
 *         },
 *         SkipFinalBackup = true,
 *         StorageCapacity = 32,
 *         SubnetIds = new[]
 *         {
 *             testAwsSubnet[0].Id,
 *         },
 *         ThroughputCapacity = 8,
 *     });
 *     var fsx = new Aws.StorageGateway.FileSystemAssociation("fsx", new()
 *     {
 *         GatewayArn = testGateway.Arn,
 *         LocationArn = testWindowsFileSystem.Arn,
 *         Username = "Admin",
 *         Password = testAwsDirectoryServiceDirectory.Password,
 *         CacheAttributes = new Aws.StorageGateway.Inputs.FileSystemAssociationCacheAttributesArgs
 *         {
 *             CacheStaleTimeoutInSeconds = 400,
 *         },
 *         AuditDestinationArn = testAwsCloudwatchLogGroup.Arn,
 *     });
 * });
 * ```
 * ```go
 * package main
 * import (
 * 	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2"
 * 	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/fsx"
 * 	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ssm"
 * 	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/storagegateway"
 * 	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
 * )
 * func main() {
 * 	pulumi.Run(func(ctx *pulumi.Context) error {
 * 		awsServiceStoragegatewayAmiFILES3Latest, err := ssm.LookupParameter(ctx, &ssm.LookupParameterArgs{
 * 			Name: "/aws/service/storagegateway/ami/FILE_S3/latest",
 * 		}, nil)
 * 		if err != nil {
 * 			return err
 * 		}
 * 		test, err := ec2.NewInstance(ctx, "test", &ec2.InstanceArgs{
 * 			Ami:                      pulumi.String(awsServiceStoragegatewayAmiFILES3Latest.Value),
 * 			AssociatePublicIpAddress: pulumi.Bool(true),
 * 			InstanceType:             ec2.InstanceType(available.InstanceType),
 * 			VpcSecurityGroupIds: pulumi.StringArray{
 * 				testAwsSecurityGroup.Id,
 * 			},
 * 			SubnetId: pulumi.Any(testAwsSubnet[0].Id),
 * 		}, pulumi.DependsOn([]pulumi.Resource{
 * 			testAwsRoute,
 * 			testAwsVpcDhcpOptionsAssociation,
 * 		}))
 * 		if err != nil {
 * 			return err
 * 		}
 * 		testGateway, err := storagegateway.NewGateway(ctx, "test", &storagegateway.GatewayArgs{
 * 			GatewayIpAddress: test.PublicIp,
 * 			GatewayName:      pulumi.String("test-sgw"),
 * 			GatewayTimezone:  pulumi.String("GMT"),
 * 			GatewayType:      pulumi.String("FILE_FSX_SMB"),
 * 			SmbActiveDirectorySettings: &storagegateway.GatewaySmbActiveDirectorySettingsArgs{
 * 				DomainName: pulumi.Any(testAwsDirectoryServiceDirectory.Name),
 * 				Password:   pulumi.Any(testAwsDirectoryServiceDirectory.Password),
 * 				Username:   pulumi.String("Admin"),
 * 			},
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		testWindowsFileSystem, err := fsx.NewWindowsFileSystem(ctx, "test", &fsx.WindowsFileSystemArgs{
 * 			ActiveDirectoryId: pulumi.Any(testAwsDirectoryServiceDirectory.Id),
 * 			SecurityGroupIds: pulumi.StringArray{
 * 				testAwsSecurityGroup.Id,
 * 			},
 * 			SkipFinalBackup: pulumi.Bool(true),
 * 			StorageCapacity: pulumi.Int(32),
 * 			SubnetIds: pulumi.StringArray{
 * 				testAwsSubnet[0].Id,
 * 			},
 * 			ThroughputCapacity: pulumi.Int(8),
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		_, err = storagegateway.NewFileSystemAssociation(ctx, "fsx", &storagegateway.FileSystemAssociationArgs{
 * 			GatewayArn:  testGateway.Arn,
 * 			LocationArn: testWindowsFileSystem.Arn,
 * 			Username:    pulumi.String("Admin"),
 * 			Password:    pulumi.Any(testAwsDirectoryServiceDirectory.Password),
 * 			CacheAttributes: &storagegateway.FileSystemAssociationCacheAttributesArgs{
 * 				CacheStaleTimeoutInSeconds: pulumi.Int(400),
 * 			},
 * 			AuditDestinationArn: pulumi.Any(testAwsCloudwatchLogGroup.Arn),
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		return nil
 * 	})
 * }
 * ```
 * ```java
 * package generated_program;
 * import com.pulumi.Context;
 * import com.pulumi.Pulumi;
 * import com.pulumi.core.Output;
 * import com.pulumi.aws.ssm.SsmFunctions;
 * import com.pulumi.aws.ssm.inputs.GetParameterArgs;
 * import com.pulumi.aws.ec2.Instance;
 * import com.pulumi.aws.ec2.InstanceArgs;
 * import com.pulumi.aws.storagegateway.Gateway;
 * import com.pulumi.aws.storagegateway.GatewayArgs;
 * import com.pulumi.aws.storagegateway.inputs.GatewaySmbActiveDirectorySettingsArgs;
 * import com.pulumi.aws.fsx.WindowsFileSystem;
 * import com.pulumi.aws.fsx.WindowsFileSystemArgs;
 * import com.pulumi.aws.storagegateway.FileSystemAssociation;
 * import com.pulumi.aws.storagegateway.FileSystemAssociationArgs;
 * import com.pulumi.aws.storagegateway.inputs.FileSystemAssociationCacheAttributesArgs;
 * import com.pulumi.resources.CustomResourceOptions;
 * 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) {
 *         final var awsServiceStoragegatewayAmiFILES3Latest = SsmFunctions.getParameter(GetParameterArgs.builder()
 *             .name("/aws/service/storagegateway/ami/FILE_S3/latest")
 *             .build());
 *         var test = new Instance("test", InstanceArgs.builder()
 *             .ami(awsServiceStoragegatewayAmiFILES3Latest.applyValue(getParameterResult -> getParameterResult.value()))
 *             .associatePublicIpAddress(true)
 *             .instanceType(available.instanceType())
 *             .vpcSecurityGroupIds(testAwsSecurityGroup.id())
 *             .subnetId(testAwsSubnet[0].id())
 *             .build(), CustomResourceOptions.builder()
 *                 .dependsOn(
 *                     testAwsRoute,
 *                     testAwsVpcDhcpOptionsAssociation)
 *                 .build());
 *         var testGateway = new Gateway("testGateway", GatewayArgs.builder()
 *             .gatewayIpAddress(test.publicIp())
 *             .gatewayName("test-sgw")
 *             .gatewayTimezone("GMT")
 *             .gatewayType("FILE_FSX_SMB")
 *             .smbActiveDirectorySettings(GatewaySmbActiveDirectorySettingsArgs.builder()
 *                 .domainName(testAwsDirectoryServiceDirectory.name())
 *                 .password(testAwsDirectoryServiceDirectory.password())
 *                 .username("Admin")
 *                 .build())
 *             .build());
 *         var testWindowsFileSystem = new WindowsFileSystem("testWindowsFileSystem", WindowsFileSystemArgs.builder()
 *             .activeDirectoryId(testAwsDirectoryServiceDirectory.id())
 *             .securityGroupIds(testAwsSecurityGroup.id())
 *             .skipFinalBackup(true)
 *             .storageCapacity(32)
 *             .subnetIds(testAwsSubnet[0].id())
 *             .throughputCapacity(8)
 *             .build());
 *         var fsx = new FileSystemAssociation("fsx", FileSystemAssociationArgs.builder()
 *             .gatewayArn(testGateway.arn())
 *             .locationArn(testWindowsFileSystem.arn())
 *             .username("Admin")
 *             .password(testAwsDirectoryServiceDirectory.password())
 *             .cacheAttributes(FileSystemAssociationCacheAttributesArgs.builder()
 *                 .cacheStaleTimeoutInSeconds(400)
 *                 .build())
 *             .auditDestinationArn(testAwsCloudwatchLogGroup.arn())
 *             .build());
 *     }
 * }
 * ```
 * ```yaml
 * resources:
 *   test:
 *     type: aws:ec2:Instance
 *     properties:
 *       ami: ${awsServiceStoragegatewayAmiFILES3Latest.value}
 *       associatePublicIpAddress: true
 *       instanceType: ${available.instanceType}
 *       vpcSecurityGroupIds:
 *         - ${testAwsSecurityGroup.id}
 *       subnetId: ${testAwsSubnet[0].id}
 *     options:
 *       dependson:
 *         - ${testAwsRoute}
 *         - ${testAwsVpcDhcpOptionsAssociation}
 *   testGateway:
 *     type: aws:storagegateway:Gateway
 *     name: test
 *     properties:
 *       gatewayIpAddress: ${test.publicIp}
 *       gatewayName: test-sgw
 *       gatewayTimezone: GMT
 *       gatewayType: FILE_FSX_SMB
 *       smbActiveDirectorySettings:
 *         domainName: ${testAwsDirectoryServiceDirectory.name}
 *         password: ${testAwsDirectoryServiceDirectory.password}
 *         username: Admin
 *   testWindowsFileSystem:
 *     type: aws:fsx:WindowsFileSystem
 *     name: test
 *     properties:
 *       activeDirectoryId: ${testAwsDirectoryServiceDirectory.id}
 *       securityGroupIds:
 *         - ${testAwsSecurityGroup.id}
 *       skipFinalBackup: true
 *       storageCapacity: 32
 *       subnetIds:
 *         - ${testAwsSubnet[0].id}
 *       throughputCapacity: 8
 *   fsx:
 *     type: aws:storagegateway:FileSystemAssociation
 *     properties:
 *       gatewayArn: ${testGateway.arn}
 *       locationArn: ${testWindowsFileSystem.arn}
 *       username: Admin
 *       password: ${testAwsDirectoryServiceDirectory.password}
 *       cacheAttributes:
 *         cacheStaleTimeoutInSeconds: 400
 *       auditDestinationArn: ${testAwsCloudwatchLogGroup.arn}
 * variables:
 *   awsServiceStoragegatewayAmiFILES3Latest:
 *     fn::invoke:
 *       Function: aws:ssm:getParameter
 *       Arguments:
 *         name: /aws/service/storagegateway/ami/FILE_S3/latest
 * ```
 * 
 * ## Import
 * Using `pulumi import`, import `aws_storagegateway_file_system_association` using the FSx file system association Amazon Resource Name (ARN). For example:
 * ```sh
 * $ pulumi import aws:storagegateway/fileSystemAssociation:FileSystemAssociation example arn:aws:storagegateway:us-east-1:123456789012:fs-association/fsa-0DA347732FDB40125
 * ```
 */
public class FileSystemAssociation internal constructor(
    override val javaResource: com.pulumi.aws.storagegateway.FileSystemAssociation,
) : KotlinCustomResource(javaResource, FileSystemAssociationMapper) {
    /**
     * Amazon Resource Name (ARN) of the newly created file system association.
     */
    public val arn: Output
        get() = javaResource.arn().applyValue({ args0 -> args0 })

    /**
     * The Amazon Resource Name (ARN) of the storage used for the audit logs.
     */
    public val auditDestinationArn: Output?
        get() = javaResource.auditDestinationArn().applyValue({ args0 ->
            args0.map({ args0 ->
                args0
            }).orElse(null)
        })

    /**
     * Refresh cache information. see Cache Attributes for more details.
     */
    public val cacheAttributes: Output?
        get() = javaResource.cacheAttributes().applyValue({ args0 ->
            args0.map({ args0 ->
                args0.let({ args0 -> toKotlin(args0) })
            }).orElse(null)
        })

    /**
     * The Amazon Resource Name (ARN) of the gateway.
     */
    public val gatewayArn: Output
        get() = javaResource.gatewayArn().applyValue({ args0 -> args0 })

    /**
     * The Amazon Resource Name (ARN) of the Amazon FSx file system to associate with the FSx File Gateway.
     */
    public val locationArn: Output
        get() = javaResource.locationArn().applyValue({ args0 -> args0 })

    /**
     * The password of the user credential.
     */
    public val password: Output
        get() = javaResource.password().applyValue({ args0 -> args0 })

    /**
     * Key-value map of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.
     */
    public val tags: Output>?
        get() = javaResource.tags().applyValue({ args0 ->
            args0.map({ args0 ->
                args0.map({ args0 ->
                    args0.key.to(args0.value)
                }).toMap()
            }).orElse(null)
        })

    /**
     * A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.
     */
    @Deprecated(
        message = """
  Please use `tags` instead.
  """,
    )
    public val tagsAll: Output>
        get() = javaResource.tagsAll().applyValue({ args0 ->
            args0.map({ args0 ->
                args0.key.to(args0.value)
            }).toMap()
        })

    /**
     * The user name of the user credential that has permission to access the root share of the Amazon FSx file system. The user account must belong to the Amazon FSx delegated admin user group.
     */
    public val username: Output
        get() = javaResource.username().applyValue({ args0 -> args0 })
}

public object FileSystemAssociationMapper : ResourceMapper {
    override fun supportsMappingOfType(javaResource: Resource): Boolean =
        com.pulumi.aws.storagegateway.FileSystemAssociation::class == javaResource::class

    override fun map(javaResource: Resource): FileSystemAssociation =
        FileSystemAssociation(javaResource as com.pulumi.aws.storagegateway.FileSystemAssociation)
}

/**
 * @see [FileSystemAssociation].
 * @param name The _unique_ name of the resulting resource.
 * @param block Builder for [FileSystemAssociation].
 */
public suspend fun fileSystemAssociation(
    name: String,
    block: suspend FileSystemAssociationResourceBuilder.() -> Unit,
): FileSystemAssociation {
    val builder = FileSystemAssociationResourceBuilder()
    builder.name(name)
    block(builder)
    return builder.build()
}

/**
 * @see [FileSystemAssociation].
 * @param name The _unique_ name of the resulting resource.
 */
public fun fileSystemAssociation(name: String): FileSystemAssociation {
    val builder = FileSystemAssociationResourceBuilder()
    builder.name(name)
    return builder.build()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy