1. Packages
  2. Azure Native
  3. API Docs
  4. datafactory
  5. CredentialOperation
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.37.0 published on Monday, Apr 15, 2024 by Pulumi

azure-native.datafactory.CredentialOperation

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.37.0 published on Monday, Apr 15, 2024 by Pulumi

    Credential resource type. Azure REST API version: 2018-06-01. Prior API version in Azure Native 1.x: 2018-06-01.

    Example Usage

    Credentials_Create

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var credentialOperation = new AzureNative.DataFactory.CredentialOperation("credentialOperation", new()
        {
            CredentialName = "exampleCredential",
            FactoryName = "exampleFactoryName",
            Properties = new AzureNative.DataFactory.Inputs.ManagedIdentityCredentialArgs
            {
                Type = "ManagedIdentity",
            },
            ResourceGroupName = "exampleResourceGroup",
        });
    
    });
    
    package main
    
    import (
    	"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.NewCredentialOperation(ctx, "credentialOperation", &datafactory.CredentialOperationArgs{
    			CredentialName: pulumi.String("exampleCredential"),
    			FactoryName:    pulumi.String("exampleFactoryName"),
    			Properties: datafactory.ManagedIdentityCredential{
    				Type: "ManagedIdentity",
    			},
    			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.CredentialOperation;
    import com.pulumi.azurenative.datafactory.CredentialOperationArgs;
    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 credentialOperation = new CredentialOperation("credentialOperation", CredentialOperationArgs.builder()        
                .credentialName("exampleCredential")
                .factoryName("exampleFactoryName")
                .properties(ManagedIdentityCredentialArgs.builder()
                    .type("ManagedIdentity")
                    .build())
                .resourceGroupName("exampleResourceGroup")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    credential_operation = azure_native.datafactory.CredentialOperation("credentialOperation",
        credential_name="exampleCredential",
        factory_name="exampleFactoryName",
        properties=azure_native.datafactory.ManagedIdentityCredentialArgs(
            type="ManagedIdentity",
        ),
        resource_group_name="exampleResourceGroup")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const credentialOperation = new azure_native.datafactory.CredentialOperation("credentialOperation", {
        credentialName: "exampleCredential",
        factoryName: "exampleFactoryName",
        properties: {
            type: "ManagedIdentity",
        },
        resourceGroupName: "exampleResourceGroup",
    });
    
    resources:
      credentialOperation:
        type: azure-native:datafactory:CredentialOperation
        properties:
          credentialName: exampleCredential
          factoryName: exampleFactoryName
          properties:
            type: ManagedIdentity
          resourceGroupName: exampleResourceGroup
    

    Create CredentialOperation Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new CredentialOperation(name: string, args: CredentialOperationArgs, opts?: CustomResourceOptions);
    @overload
    def CredentialOperation(resource_name: str,
                            args: CredentialOperationArgs,
                            opts: Optional[ResourceOptions] = None)
    
    @overload
    def CredentialOperation(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            factory_name: Optional[str] = None,
                            properties: Optional[Union[ManagedIdentityCredentialArgs, ServicePrincipalCredentialArgs, SystemAssignedManagedIdentityCredentialArgs, UserAssignedManagedIdentityCredentialArgs]] = None,
                            resource_group_name: Optional[str] = None,
                            credential_name: Optional[str] = None)
    func NewCredentialOperation(ctx *Context, name string, args CredentialOperationArgs, opts ...ResourceOption) (*CredentialOperation, error)
    public CredentialOperation(string name, CredentialOperationArgs args, CustomResourceOptions? opts = null)
    public CredentialOperation(String name, CredentialOperationArgs args)
    public CredentialOperation(String name, CredentialOperationArgs args, CustomResourceOptions options)
    
    type: azure-native:datafactory:CredentialOperation
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args CredentialOperationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args CredentialOperationArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args CredentialOperationArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args CredentialOperationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args CredentialOperationArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var credentialOperationResource = new AzureNative.DataFactory.CredentialOperation("credentialOperationResource", new()
    {
        FactoryName = "string",
        Properties = new AzureNative.DataFactory.Inputs.ManagedIdentityCredentialArgs
        {
            Type = "ManagedIdentity",
            Annotations = new[]
            {
                "any",
            },
            Description = "string",
        },
        ResourceGroupName = "string",
        CredentialName = "string",
    });
    
    example, err := datafactory.NewCredentialOperation(ctx, "credentialOperationResource", &datafactory.CredentialOperationArgs{
    FactoryName: pulumi.String("string"),
    Properties: datafactory.ManagedIdentityCredential{
    Type: "ManagedIdentity",
    Annotations: []string{
    "any",
    },
    Description: "string",
    },
    ResourceGroupName: pulumi.String("string"),
    CredentialName: pulumi.String("string"),
    })
    
    var credentialOperationResource = new CredentialOperation("credentialOperationResource", CredentialOperationArgs.builder()        
        .factoryName("string")
        .properties(ManagedIdentityCredentialArgs.builder()
            .type("ManagedIdentity")
            .annotations("any")
            .description("string")
            .build())
        .resourceGroupName("string")
        .credentialName("string")
        .build());
    
    credential_operation_resource = azure_native.datafactory.CredentialOperation("credentialOperationResource",
        factory_name="string",
        properties=azure_native.datafactory.ManagedIdentityCredentialArgs(
            type="ManagedIdentity",
            annotations=["any"],
            description="string",
        ),
        resource_group_name="string",
        credential_name="string")
    
    const credentialOperationResource = new azure_native.datafactory.CredentialOperation("credentialOperationResource", {
        factoryName: "string",
        properties: {
            type: "ManagedIdentity",
            annotations: ["any"],
            description: "string",
        },
        resourceGroupName: "string",
        credentialName: "string",
    });
    
    type: azure-native:datafactory:CredentialOperation
    properties:
        credentialName: string
        factoryName: string
        properties:
            annotations:
                - any
            description: string
            type: ManagedIdentity
        resourceGroupName: string
    

    CredentialOperation Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The CredentialOperation resource accepts the following input properties:

    factoryName String
    The factory name.
    properties Property Map | Property Map | Property Map | Property Map
    Properties of credentials.
    resourceGroupName String
    The resource group name.
    credentialName String
    Credential name

    Outputs

    All input properties are implicitly available as output properties. Additionally, the CredentialOperation resource produces the following output properties:

    Etag string
    Etag identifies change in the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The resource name.
    Type string
    The resource type.
    Etag string
    Etag identifies change in the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The resource name.
    Type string
    The resource type.
    etag String
    Etag identifies change in the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The resource name.
    type String
    The resource type.
    etag string
    Etag identifies change in the resource.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The resource name.
    type string
    The resource type.
    etag str
    Etag identifies change in the resource.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The resource name.
    type str
    The resource type.
    etag String
    Etag identifies change in the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The resource name.
    type String
    The resource type.

    Supporting Types

    AzureKeyVaultSecretReference, AzureKeyVaultSecretReferenceArgs

    SecretName object
    The name of the secret in Azure Key Vault. Type: string (or Expression with resultType string).
    Store Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
    The Azure Key Vault linked service reference.
    SecretVersion object
    The version of the secret in Azure Key Vault. The default value is the latest version of the secret. Type: string (or Expression with resultType string).
    SecretName interface{}
    The name of the secret in Azure Key Vault. Type: string (or Expression with resultType string).
    Store LinkedServiceReference
    The Azure Key Vault linked service reference.
    SecretVersion interface{}
    The version of the secret in Azure Key Vault. The default value is the latest version of the secret. Type: string (or Expression with resultType string).
    secretName Object
    The name of the secret in Azure Key Vault. Type: string (or Expression with resultType string).
    store LinkedServiceReference
    The Azure Key Vault linked service reference.
    secretVersion Object
    The version of the secret in Azure Key Vault. The default value is the latest version of the secret. Type: string (or Expression with resultType string).
    secretName any
    The name of the secret in Azure Key Vault. Type: string (or Expression with resultType string).
    store LinkedServiceReference
    The Azure Key Vault linked service reference.
    secretVersion any
    The version of the secret in Azure Key Vault. The default value is the latest version of the secret. Type: string (or Expression with resultType string).
    secret_name Any
    The name of the secret in Azure Key Vault. Type: string (or Expression with resultType string).
    store LinkedServiceReference
    The Azure Key Vault linked service reference.
    secret_version Any
    The version of the secret in Azure Key Vault. The default value is the latest version of the secret. Type: string (or Expression with resultType string).
    secretName Any
    The name of the secret in Azure Key Vault. Type: string (or Expression with resultType string).
    store Property Map
    The Azure Key Vault linked service reference.
    secretVersion Any
    The version of the secret in Azure Key Vault. The default value is the latest version of the secret. Type: string (or Expression with resultType string).

    AzureKeyVaultSecretReferenceResponse, AzureKeyVaultSecretReferenceResponseArgs

    SecretName object
    The name of the secret in Azure Key Vault. Type: string (or Expression with resultType string).
    Store Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
    The Azure Key Vault linked service reference.
    SecretVersion object
    The version of the secret in Azure Key Vault. The default value is the latest version of the secret. Type: string (or Expression with resultType string).
    SecretName interface{}
    The name of the secret in Azure Key Vault. Type: string (or Expression with resultType string).
    Store LinkedServiceReferenceResponse
    The Azure Key Vault linked service reference.
    SecretVersion interface{}
    The version of the secret in Azure Key Vault. The default value is the latest version of the secret. Type: string (or Expression with resultType string).
    secretName Object
    The name of the secret in Azure Key Vault. Type: string (or Expression with resultType string).
    store LinkedServiceReferenceResponse
    The Azure Key Vault linked service reference.
    secretVersion Object
    The version of the secret in Azure Key Vault. The default value is the latest version of the secret. Type: string (or Expression with resultType string).
    secretName any
    The name of the secret in Azure Key Vault. Type: string (or Expression with resultType string).
    store LinkedServiceReferenceResponse
    The Azure Key Vault linked service reference.
    secretVersion any
    The version of the secret in Azure Key Vault. The default value is the latest version of the secret. Type: string (or Expression with resultType string).
    secret_name Any
    The name of the secret in Azure Key Vault. Type: string (or Expression with resultType string).
    store LinkedServiceReferenceResponse
    The Azure Key Vault linked service reference.
    secret_version Any
    The version of the secret in Azure Key Vault. The default value is the latest version of the secret. Type: string (or Expression with resultType string).
    secretName Any
    The name of the secret in Azure Key Vault. Type: string (or Expression with resultType string).
    store Property Map
    The Azure Key Vault linked service reference.
    secretVersion Any
    The version of the secret in Azure Key Vault. The default value is the latest version of the secret. Type: string (or Expression with resultType string).

    LinkedServiceReference, LinkedServiceReferenceArgs

    ReferenceName string
    Reference LinkedService name.
    Type string | Pulumi.AzureNative.DataFactory.Type
    Linked service reference type.
    Parameters Dictionary<string, object>
    Arguments for LinkedService.
    ReferenceName string
    Reference LinkedService name.
    Type string | Type
    Linked service reference type.
    Parameters map[string]interface{}
    Arguments for LinkedService.
    referenceName String
    Reference LinkedService name.
    type String | Type
    Linked service reference type.
    parameters Map<String,Object>
    Arguments for LinkedService.
    referenceName string
    Reference LinkedService name.
    type string | Type
    Linked service reference type.
    parameters {[key: string]: any}
    Arguments for LinkedService.
    reference_name str
    Reference LinkedService name.
    type str | Type
    Linked service reference type.
    parameters Mapping[str, Any]
    Arguments for LinkedService.
    referenceName String
    Reference LinkedService name.
    type String | "LinkedServiceReference"
    Linked service reference type.
    parameters Map<Any>
    Arguments for LinkedService.

    LinkedServiceReferenceResponse, LinkedServiceReferenceResponseArgs

    ReferenceName string
    Reference LinkedService name.
    Type string
    Linked service reference type.
    Parameters Dictionary<string, object>
    Arguments for LinkedService.
    ReferenceName string
    Reference LinkedService name.
    Type string
    Linked service reference type.
    Parameters map[string]interface{}
    Arguments for LinkedService.
    referenceName String
    Reference LinkedService name.
    type String
    Linked service reference type.
    parameters Map<String,Object>
    Arguments for LinkedService.
    referenceName string
    Reference LinkedService name.
    type string
    Linked service reference type.
    parameters {[key: string]: any}
    Arguments for LinkedService.
    reference_name str
    Reference LinkedService name.
    type str
    Linked service reference type.
    parameters Mapping[str, Any]
    Arguments for LinkedService.
    referenceName String
    Reference LinkedService name.
    type String
    Linked service reference type.
    parameters Map<Any>
    Arguments for LinkedService.

    ManagedIdentityCredential, ManagedIdentityCredentialArgs

    Annotations List<object>
    List of tags that can be used for describing the Credential.
    Description string
    Credential description.
    Annotations []interface{}
    List of tags that can be used for describing the Credential.
    Description string
    Credential description.
    annotations List<Object>
    List of tags that can be used for describing the Credential.
    description String
    Credential description.
    annotations any[]
    List of tags that can be used for describing the Credential.
    description string
    Credential description.
    annotations Sequence[Any]
    List of tags that can be used for describing the Credential.
    description str
    Credential description.
    annotations List<Any>
    List of tags that can be used for describing the Credential.
    description String
    Credential description.

    ManagedIdentityCredentialResponse, ManagedIdentityCredentialResponseArgs

    Annotations List<object>
    List of tags that can be used for describing the Credential.
    Description string
    Credential description.
    Annotations []interface{}
    List of tags that can be used for describing the Credential.
    Description string
    Credential description.
    annotations List<Object>
    List of tags that can be used for describing the Credential.
    description String
    Credential description.
    annotations any[]
    List of tags that can be used for describing the Credential.
    description string
    Credential description.
    annotations Sequence[Any]
    List of tags that can be used for describing the Credential.
    description str
    Credential description.
    annotations List<Any>
    List of tags that can be used for describing the Credential.
    description String
    Credential description.

    ServicePrincipalCredential, ServicePrincipalCredentialArgs

    Annotations List<object>
    List of tags that can be used for describing the Credential.
    Description string
    Credential description.
    ServicePrincipalId object
    The app ID of the service principal used to authenticate
    ServicePrincipalKey Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference
    The key of the service principal used to authenticate.
    Tenant object
    The ID of the tenant to which the service principal belongs
    Annotations []interface{}
    List of tags that can be used for describing the Credential.
    Description string
    Credential description.
    ServicePrincipalId interface{}
    The app ID of the service principal used to authenticate
    ServicePrincipalKey AzureKeyVaultSecretReference
    The key of the service principal used to authenticate.
    Tenant interface{}
    The ID of the tenant to which the service principal belongs
    annotations List<Object>
    List of tags that can be used for describing the Credential.
    description String
    Credential description.
    servicePrincipalId Object
    The app ID of the service principal used to authenticate
    servicePrincipalKey AzureKeyVaultSecretReference
    The key of the service principal used to authenticate.
    tenant Object
    The ID of the tenant to which the service principal belongs
    annotations any[]
    List of tags that can be used for describing the Credential.
    description string
    Credential description.
    servicePrincipalId any
    The app ID of the service principal used to authenticate
    servicePrincipalKey AzureKeyVaultSecretReference
    The key of the service principal used to authenticate.
    tenant any
    The ID of the tenant to which the service principal belongs
    annotations Sequence[Any]
    List of tags that can be used for describing the Credential.
    description str
    Credential description.
    service_principal_id Any
    The app ID of the service principal used to authenticate
    service_principal_key AzureKeyVaultSecretReference
    The key of the service principal used to authenticate.
    tenant Any
    The ID of the tenant to which the service principal belongs
    annotations List<Any>
    List of tags that can be used for describing the Credential.
    description String
    Credential description.
    servicePrincipalId Any
    The app ID of the service principal used to authenticate
    servicePrincipalKey Property Map
    The key of the service principal used to authenticate.
    tenant Any
    The ID of the tenant to which the service principal belongs

    ServicePrincipalCredentialResponse, ServicePrincipalCredentialResponseArgs

    Annotations List<object>
    List of tags that can be used for describing the Credential.
    Description string
    Credential description.
    ServicePrincipalId object
    The app ID of the service principal used to authenticate
    ServicePrincipalKey Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse
    The key of the service principal used to authenticate.
    Tenant object
    The ID of the tenant to which the service principal belongs
    Annotations []interface{}
    List of tags that can be used for describing the Credential.
    Description string
    Credential description.
    ServicePrincipalId interface{}
    The app ID of the service principal used to authenticate
    ServicePrincipalKey AzureKeyVaultSecretReferenceResponse
    The key of the service principal used to authenticate.
    Tenant interface{}
    The ID of the tenant to which the service principal belongs
    annotations List<Object>
    List of tags that can be used for describing the Credential.
    description String
    Credential description.
    servicePrincipalId Object
    The app ID of the service principal used to authenticate
    servicePrincipalKey AzureKeyVaultSecretReferenceResponse
    The key of the service principal used to authenticate.
    tenant Object
    The ID of the tenant to which the service principal belongs
    annotations any[]
    List of tags that can be used for describing the Credential.
    description string
    Credential description.
    servicePrincipalId any
    The app ID of the service principal used to authenticate
    servicePrincipalKey AzureKeyVaultSecretReferenceResponse
    The key of the service principal used to authenticate.
    tenant any
    The ID of the tenant to which the service principal belongs
    annotations Sequence[Any]
    List of tags that can be used for describing the Credential.
    description str
    Credential description.
    service_principal_id Any
    The app ID of the service principal used to authenticate
    service_principal_key AzureKeyVaultSecretReferenceResponse
    The key of the service principal used to authenticate.
    tenant Any
    The ID of the tenant to which the service principal belongs
    annotations List<Any>
    List of tags that can be used for describing the Credential.
    description String
    Credential description.
    servicePrincipalId Any
    The app ID of the service principal used to authenticate
    servicePrincipalKey Property Map
    The key of the service principal used to authenticate.
    tenant Any
    The ID of the tenant to which the service principal belongs

    SystemAssignedManagedIdentityCredential, SystemAssignedManagedIdentityCredentialArgs

    Annotations List<object>
    List of tags that can be used for describing the Credential.
    Description string
    Credential description.
    Annotations []interface{}
    List of tags that can be used for describing the Credential.
    Description string
    Credential description.
    annotations List<Object>
    List of tags that can be used for describing the Credential.
    description String
    Credential description.
    annotations any[]
    List of tags that can be used for describing the Credential.
    description string
    Credential description.
    annotations Sequence[Any]
    List of tags that can be used for describing the Credential.
    description str
    Credential description.
    annotations List<Any>
    List of tags that can be used for describing the Credential.
    description String
    Credential description.

    SystemAssignedManagedIdentityCredentialResponse, SystemAssignedManagedIdentityCredentialResponseArgs

    Annotations List<object>
    List of tags that can be used for describing the Credential.
    Description string
    Credential description.
    Annotations []interface{}
    List of tags that can be used for describing the Credential.
    Description string
    Credential description.
    annotations List<Object>
    List of tags that can be used for describing the Credential.
    description String
    Credential description.
    annotations any[]
    List of tags that can be used for describing the Credential.
    description string
    Credential description.
    annotations Sequence[Any]
    List of tags that can be used for describing the Credential.
    description str
    Credential description.
    annotations List<Any>
    List of tags that can be used for describing the Credential.
    description String
    Credential description.

    Type, TypeArgs

    LinkedServiceReference
    LinkedServiceReference
    TypeLinkedServiceReference
    LinkedServiceReference
    LinkedServiceReference
    LinkedServiceReference
    LinkedServiceReference
    LinkedServiceReference
    LINKED_SERVICE_REFERENCE
    LinkedServiceReference
    "LinkedServiceReference"
    LinkedServiceReference

    UserAssignedManagedIdentityCredential, UserAssignedManagedIdentityCredentialArgs

    Annotations List<object>
    List of tags that can be used for describing the Credential.
    Description string
    Credential description.
    Annotations []interface{}
    List of tags that can be used for describing the Credential.
    Description string
    Credential description.
    annotations List<Object>
    List of tags that can be used for describing the Credential.
    description String
    Credential description.
    annotations any[]
    List of tags that can be used for describing the Credential.
    description string
    Credential description.
    annotations Sequence[Any]
    List of tags that can be used for describing the Credential.
    description str
    Credential description.
    annotations List<Any>
    List of tags that can be used for describing the Credential.
    description String
    Credential description.

    UserAssignedManagedIdentityCredentialResponse, UserAssignedManagedIdentityCredentialResponseArgs

    Annotations List<object>
    List of tags that can be used for describing the Credential.
    Description string
    Credential description.
    Annotations []interface{}
    List of tags that can be used for describing the Credential.
    Description string
    Credential description.
    annotations List<Object>
    List of tags that can be used for describing the Credential.
    description String
    Credential description.
    annotations any[]
    List of tags that can be used for describing the Credential.
    description string
    Credential description.
    annotations Sequence[Any]
    List of tags that can be used for describing the Credential.
    description str
    Credential description.
    annotations List<Any>
    List of tags that can be used for describing the Credential.
    description String
    Credential description.

    Import

    An existing resource can be imported using its type token, name, and identifier, e.g.

    $ pulumi import azure-native:datafactory:CredentialOperation exampleCredential /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataFactory/factories/{factoryName}/credentials/{credentialName} 
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.37.0 published on Monday, Apr 15, 2024 by Pulumi