Factory Args
data class FactoryArgs(val encryption: Output<EncryptionConfigurationArgs>? = null, val factoryName: Output<String>? = null, val globalParameters: Output<Map<String, GlobalParameterSpecificationArgs>>? = null, val identity: Output<FactoryIdentityArgs>? = null, val location: Output<String>? = null, val publicNetworkAccess: Output<Either<String, PublicNetworkAccess>>? = null, val purviewConfiguration: Output<PurviewConfigurationArgs>? = null, val repoConfiguration: Output<Either<FactoryGitHubConfigurationArgs, FactoryVSTSConfigurationArgs>>? = null, val resourceGroupName: Output<String>? = null, val tags: Output<Map<String, String>>? = null) : ConvertibleToJava<FactoryArgs>
Factory resource type. Uses Azure REST API version 2018-06-01. In version 2.x of the Azure Native provider, it used API version 2018-06-01.
Example Usage
Factories_CreateOrUpdate
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var factory = new AzureNative.DataFactory.Factory("factory", new()
{
FactoryName = "exampleFactoryName",
Location = "East US",
ResourceGroupName = "exampleResourceGroup",
});
});
Content copied to clipboard
package main
import (
datafactory "github.com/pulumi/pulumi-azure-native-sdk/datafactory/v3"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := datafactory.NewFactory(ctx, "factory", &datafactory.FactoryArgs{
FactoryName: pulumi.String("exampleFactoryName"),
Location: pulumi.String("East US"),
ResourceGroupName: pulumi.String("exampleResourceGroup"),
})
if err != nil {
return err
}
return nil
})
}
Content copied to clipboard
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.datafactory.Factory;
import com.pulumi.azurenative.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 factory = new Factory("factory", FactoryArgs.builder()
.factoryName("exampleFactoryName")
.location("East US")
.resourceGroupName("exampleResourceGroup")
.build());
}
}
Content copied to clipboard
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:datafactory:Factory exampleFactoryName /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataFactory/factories/{factoryName}
Content copied to clipboard
Constructors
Link copied to clipboard
constructor(encryption: Output<EncryptionConfigurationArgs>? = null, factoryName: Output<String>? = null, globalParameters: Output<Map<String, GlobalParameterSpecificationArgs>>? = null, identity: Output<FactoryIdentityArgs>? = null, location: Output<String>? = null, publicNetworkAccess: Output<Either<String, PublicNetworkAccess>>? = null, purviewConfiguration: Output<PurviewConfigurationArgs>? = null, repoConfiguration: Output<Either<FactoryGitHubConfigurationArgs, FactoryVSTSConfigurationArgs>>? = null, resourceGroupName: Output<String>? = null, tags: Output<Map<String, String>>? = null)
Properties
Link copied to clipboard
Properties to enable Customer Managed Key for the factory.
Link copied to clipboard
The factory name.
Link copied to clipboard
List of parameters for factory.
Link copied to clipboard
Managed service identity of the factory.
Link copied to clipboard
Whether or not public network access is allowed for the data factory.
Link copied to clipboard
Purview information of the factory.
Link copied to clipboard
val repoConfiguration: Output<Either<FactoryGitHubConfigurationArgs, FactoryVSTSConfigurationArgs>>? = null
Git repo information of the factory.
Link copied to clipboard
The resource group name.