Factory
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/v2"
"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
Properties
Link copied to clipboard
The Azure API version of the resource.
Link copied to clipboard
Time the factory was created in ISO8601 format.
Link copied to clipboard
Properties to enable Customer Managed Key for the factory.
Link copied to clipboard
List of parameters for factory.
Link copied to clipboard
Managed service identity of the factory.
Link copied to clipboard
Factory provisioning state, example Succeeded.
Link copied to clipboard
Whether or not public network access is allowed for the data factory.
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Purview information of the factory.
Link copied to clipboard
val repoConfiguration: Output<Either<FactoryGitHubConfigurationResponse, FactoryVSTSConfigurationResponse>>?
Git repo information of the factory.