Factory

class Factory : KotlinCustomResource

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/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
})
}
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}

Properties

Link copied to clipboard
val azureApiVersion: Output<String>

The Azure API version of the resource.

Link copied to clipboard
val createTime: Output<String>

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
val eTag: Output<String>

Etag identifies change in the resource.

Link copied to clipboard

List of parameters for factory.

Link copied to clipboard
val id: Output<String>
Link copied to clipboard

Managed service identity of the factory.

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

The resource location.

Link copied to clipboard
val name: Output<String>

The resource name.

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
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Purview information of the factory.

Link copied to clipboard

Git repo information of the factory.

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

The resource tags.

Link copied to clipboard
val type: Output<String>

The resource type.

Link copied to clipboard
val urn: Output<String>
Link copied to clipboard
val version: Output<String>

Version of the factory.