FactoryArgs

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",
});
});
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
})
}
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());
}
}

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}

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
val factoryName: Output<String>? = null

The factory name.

Link copied to clipboard

List of parameters for factory.

Link copied to clipboard
val identity: Output<FactoryIdentityArgs>? = null

Managed service identity of the factory.

Link copied to clipboard
val location: Output<String>? = null

The resource location.

Link copied to clipboard
val publicNetworkAccess: Output<Either<String, PublicNetworkAccess>>? = null

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

Git repo information of the factory.

Link copied to clipboard
val resourceGroupName: Output<String>? = null

The resource group name.

Link copied to clipboard
val tags: Output<Map<String, String>>? = null

The resource tags.

Functions

Link copied to clipboard
open override fun toJava(): FactoryArgs