Folder Args
data class FolderArgs(val folderPath: Output<String>? = null, val projectId: Output<String>? = null, val projectIdentifier: Output<String>? = null) : ConvertibleToJava<FolderArgs>
Provides a Data Works Folder resource. For information about Data Works Folder and how to use it, see What is Folder.
NOTE: Available in v1.131.0+.
Example Usage
Basic Usage
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.dataworks.Folder;
import com.pulumi.alicloud.dataworks.FolderArgs;
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 Folder("example", FolderArgs.builder()
.folderPath("Business Flow/tfTestAcc/folderDi/tftest1")
.projectId("320687")
.build());
}
}
Content copied to clipboard
Import
Data Works Folder can be imported using the id, e.g.
$ pulumi import alicloud:dataworks/folder:Folder example <folder_id>:<$.ProjectId>
Content copied to clipboard
Constructors
Link copied to clipboard
fun FolderArgs(folderPath: Output<String>? = null, projectId: Output<String>? = null, projectIdentifier: Output<String>? = null)
Functions
Properties
Link copied to clipboard
Folder Path. The folder path composed with for part: Business Flow/{Business Flow Name}/[folderDi|folderMaxCompute|folderGeneral|folderJdbc|folderUserDefined]/{Directory Name}
. The first segment of path must be Business Flow
, and sencond segment of path must be a Business Flow Name within the project. The third part of path must be one of those keywords:folderDi|folderMaxCompute|folderGeneral|folderJdbc|folderUserDefined
. Then the finial part of folder path can be specified in yourself.