Factory Args
data class FactoryArgs(val customerManagedKeyId: Output<String>? = null, val customerManagedKeyIdentityId: Output<String>? = null, val githubConfiguration: Output<FactoryGithubConfigurationArgs>? = null, val globalParameters: Output<List<FactoryGlobalParameterArgs>>? = null, val identity: Output<FactoryIdentityArgs>? = null, val location: Output<String>? = null, val managedVirtualNetworkEnabled: Output<Boolean>? = null, val name: Output<String>? = null, val publicNetworkEnabled: Output<Boolean>? = null, val purviewId: Output<String>? = null, val resourceGroupName: Output<String>? = null, val tags: Output<Map<String, String>>? = null, val vstsConfiguration: Output<FactoryVstsConfigurationArgs>? = null) : ConvertibleToJava<FactoryArgs>
Manages an Azure Data Factory (Version 2).
Example Usage
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.core.ResourceGroup;
import com.pulumi.azure.core.ResourceGroupArgs;
import com.pulumi.azure.datafactory.Factory;
import com.pulumi.azure.datafactory.FactoryArgs;
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 ResourceGroup("example", ResourceGroupArgs.builder()
.name("example-resources")
.location("West Europe")
.build());
var exampleFactory = new Factory("exampleFactory", FactoryArgs.builder()
.name("example")
.location(example.location())
.resourceGroupName(example.name())
.build());
}
}
Content copied to clipboard
Import
Data Factory can be imported using the resource id
, e.g.
$ pulumi import azure:datafactory/factory:Factory example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/example/providers/Microsoft.DataFactory/factories/example
Content copied to clipboard
Constructors
Link copied to clipboard
fun FactoryArgs(customerManagedKeyId: Output<String>? = null, customerManagedKeyIdentityId: Output<String>? = null, githubConfiguration: Output<FactoryGithubConfigurationArgs>? = null, globalParameters: Output<List<FactoryGlobalParameterArgs>>? = null, identity: Output<FactoryIdentityArgs>? = null, location: Output<String>? = null, managedVirtualNetworkEnabled: Output<Boolean>? = null, name: Output<String>? = null, publicNetworkEnabled: Output<Boolean>? = null, purviewId: Output<String>? = null, resourceGroupName: Output<String>? = null, tags: Output<Map<String, String>>? = null, vstsConfiguration: Output<FactoryVstsConfigurationArgs>? = null)
Functions
Properties
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Specifies the name of the Data Factory. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.