
com.pulumi.azurenative.workloads.inputs.CreateAndMountFileShareConfigurationArgs Maven / Gradle / Ivy
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.azurenative.workloads.inputs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.core.internal.Codegen;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
/**
* Gets or sets the file share configuration where the transport directory fileshare is created and mounted as a part of the create infra flow. Please pre-create the resource group you intend to place the transport directory in. The storage account and fileshare will be auto-created by the ACSS and doesn’t need to pre-created.
*
*/
public final class CreateAndMountFileShareConfigurationArgs extends com.pulumi.resources.ResourceArgs {
public static final CreateAndMountFileShareConfigurationArgs Empty = new CreateAndMountFileShareConfigurationArgs();
/**
* The type of file share config.
* Expected value is 'CreateAndMount'.
*
*/
@Import(name="configurationType", required=true)
private Output configurationType;
/**
* @return The type of file share config.
* Expected value is 'CreateAndMount'.
*
*/
public Output configurationType() {
return this.configurationType;
}
/**
* The name of transport file share resource group. This should be pre created by the customer. The app rg is used in case of missing input.
*
*/
@Import(name="resourceGroup")
private @Nullable Output resourceGroup;
/**
* @return The name of transport file share resource group. This should be pre created by the customer. The app rg is used in case of missing input.
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy