1. Packages
  2. Azure Native
  3. API Docs
  4. datafactory
  5. CredentialOperation
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.1.0 published on Tuesday, Apr 8, 2025 by Pulumi

azure-native.datafactory.CredentialOperation

Explore with Pulumi AI

This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.1.0 published on Tuesday, Apr 8, 2025 by Pulumi

Credential 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

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
        {
            ResourceId = "/subscriptions/12345678-1234-1234-1234-12345678abc/resourcegroups/exampleResourceGroup/providers/Microsoft.ManagedIdentity/userAssignedIdentities/exampleUami",
            Type = "ManagedIdentity",
        },
        ResourceGroupName = "exampleResourceGroup",
    });

});
Copy
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.NewCredentialOperation(ctx, "credentialOperation", &datafactory.CredentialOperationArgs{
			CredentialName: pulumi.String("exampleCredential"),
			FactoryName:    pulumi.String("exampleFactoryName"),
			Properties: &datafactory.ManagedIdentityCredentialArgs{
				ResourceId: pulumi.String("/subscriptions/12345678-1234-1234-1234-12345678abc/resourcegroups/exampleResourceGroup/providers/Microsoft.ManagedIdentity/userAssignedIdentities/exampleUami"),
				Type:       pulumi.String("ManagedIdentity"),
			},
			ResourceGroupName: pulumi.String("exampleResourceGroup"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
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()
                .resourceId("/subscriptions/12345678-1234-1234-1234-12345678abc/resourcegroups/exampleResourceGroup/providers/Microsoft.ManagedIdentity/userAssignedIdentities/exampleUami")
                .type("ManagedIdentity")
                .build())
            .resourceGroupName("exampleResourceGroup")
            .build());

    }
}
Copy
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: {
        resourceId: "/subscriptions/12345678-1234-1234-1234-12345678abc/resourcegroups/exampleResourceGroup/providers/Microsoft.ManagedIdentity/userAssignedIdentities/exampleUami",
        type: "ManagedIdentity",
    },
    resourceGroupName: "exampleResourceGroup",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

credential_operation = azure_native.datafactory.CredentialOperation("credentialOperation",
    credential_name="exampleCredential",
    factory_name="exampleFactoryName",
    properties={
        "resource_id": "/subscriptions/12345678-1234-1234-1234-12345678abc/resourcegroups/exampleResourceGroup/providers/Microsoft.ManagedIdentity/userAssignedIdentities/exampleUami",
        "type": "ManagedIdentity",
    },
    resource_group_name="exampleResourceGroup")
Copy
resources:
  credentialOperation:
    type: azure-native:datafactory:CredentialOperation
    properties:
      credentialName: exampleCredential
      factoryName: exampleFactoryName
      properties:
        resourceId: /subscriptions/12345678-1234-1234-1234-12345678abc/resourcegroups/exampleResourceGroup/providers/Microsoft.ManagedIdentity/userAssignedIdentities/exampleUami
        type: ManagedIdentity
      resourceGroupName: exampleResourceGroup
Copy

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]] = 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 This property is required. string
The unique name of the resource.
args This property is required. CredentialOperationArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. 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 This property is required. string
The unique name of the resource.
args This property is required. CredentialOperationArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. CredentialOperationArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. CredentialOperationArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor 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",
        ResourceId = "string",
    },
    ResourceGroupName = "string",
    CredentialName = "string",
});
Copy
example, err := datafactory.NewCredentialOperation(ctx, "credentialOperationResource", &datafactory.CredentialOperationArgs{
	FactoryName: pulumi.String("string"),
	Properties: &datafactory.ManagedIdentityCredentialArgs{
		Type: pulumi.String("ManagedIdentity"),
		Annotations: pulumi.Array{
			pulumi.Any("any"),
		},
		Description: pulumi.String("string"),
		ResourceId:  pulumi.String("string"),
	},
	ResourceGroupName: pulumi.String("string"),
	CredentialName:    pulumi.String("string"),
})
Copy
var credentialOperationResource = new CredentialOperation("credentialOperationResource", CredentialOperationArgs.builder()
    .factoryName("string")
    .properties(ManagedIdentityCredentialArgs.builder()
        .type("ManagedIdentity")
        .annotations("any")
        .description("string")
        .resourceId("string")
        .build())
    .resourceGroupName("string")
    .credentialName("string")
    .build());
Copy
credential_operation_resource = azure_native.datafactory.CredentialOperation("credentialOperationResource",
    factory_name="string",
    properties={
        "type": "ManagedIdentity",
        "annotations": ["any"],
        "description": "string",
        "resource_id": "string",
    },
    resource_group_name="string",
    credential_name="string")
Copy
const credentialOperationResource = new azure_native.datafactory.CredentialOperation("credentialOperationResource", {
    factoryName: "string",
    properties: {
        type: "ManagedIdentity",
        annotations: ["any"],
        description: "string",
        resourceId: "string",
    },
    resourceGroupName: "string",
    credentialName: "string",
});
Copy
type: azure-native:datafactory:CredentialOperation
properties:
    credentialName: string
    factoryName: string
    properties:
        annotations:
            - any
        description: string
        resourceId: string
        type: ManagedIdentity
    resourceGroupName: string
Copy

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

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The CredentialOperation resource accepts the following input properties:

FactoryName
This property is required.
Changes to this property will trigger replacement.
string
The factory name.
Properties This property is required. Pulumi.AzureNative.DataFactory.Inputs.ManagedIdentityCredential | Pulumi.AzureNative.DataFactory.Inputs.ServicePrincipalCredential
Properties of credentials.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The resource group name.
CredentialName Changes to this property will trigger replacement. string
Credential name
FactoryName
This property is required.
Changes to this property will trigger replacement.
string
The factory name.
Properties This property is required. ManagedIdentityCredentialArgs | ServicePrincipalCredentialArgs
Properties of credentials.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The resource group name.
CredentialName Changes to this property will trigger replacement. string
Credential name
factoryName
This property is required.
Changes to this property will trigger replacement.
String
The factory name.
properties This property is required. ManagedIdentityCredential | ServicePrincipalCredential
Properties of credentials.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The resource group name.
credentialName Changes to this property will trigger replacement. String
Credential name
factoryName
This property is required.
Changes to this property will trigger replacement.
string
The factory name.
properties This property is required. ManagedIdentityCredential | ServicePrincipalCredential
Properties of credentials.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The resource group name.
credentialName Changes to this property will trigger replacement. string
Credential name
factory_name
This property is required.
Changes to this property will trigger replacement.
str
The factory name.
properties This property is required. ManagedIdentityCredentialArgs | ServicePrincipalCredentialArgs
Properties of credentials.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The resource group name.
credential_name Changes to this property will trigger replacement. str
Credential name
factoryName
This property is required.
Changes to this property will trigger replacement.
String
The factory name.
properties This property is required. Property Map | Property Map
Properties of credentials.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The resource group name.
credentialName Changes to this property will trigger replacement. String
Credential name

Outputs

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

AzureApiVersion string
The Azure API version of the resource.
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.
AzureApiVersion string
The Azure API version of the resource.
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.
azureApiVersion String
The Azure API version of the resource.
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.
azureApiVersion string
The Azure API version of the resource.
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.
azure_api_version str
The Azure API version of the resource.
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.
azureApiVersion String
The Azure API version of the resource.
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 This property is required. object
The name of the secret in Azure Key Vault. Type: string (or Expression with resultType string).
Store This property is required. 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 This property is required. interface{}
The name of the secret in Azure Key Vault. Type: string (or Expression with resultType string).
Store This property is required. 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 This property is required. Object
The name of the secret in Azure Key Vault. Type: string (or Expression with resultType string).
store This property is required. 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 This property is required. any
The name of the secret in Azure Key Vault. Type: string (or Expression with resultType string).
store This property is required. 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 This property is required. Any
The name of the secret in Azure Key Vault. Type: string (or Expression with resultType string).
store This property is required. 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 This property is required. Any
The name of the secret in Azure Key Vault. Type: string (or Expression with resultType string).
store This property is required. 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 This property is required. object
The name of the secret in Azure Key Vault. Type: string (or Expression with resultType string).
Store This property is required. 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 This property is required. interface{}
The name of the secret in Azure Key Vault. Type: string (or Expression with resultType string).
Store This property is required. 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 This property is required. Object
The name of the secret in Azure Key Vault. Type: string (or Expression with resultType string).
store This property is required. 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 This property is required. any
The name of the secret in Azure Key Vault. Type: string (or Expression with resultType string).
store This property is required. 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 This property is required. Any
The name of the secret in Azure Key Vault. Type: string (or Expression with resultType string).
store This property is required. 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 This property is required. Any
The name of the secret in Azure Key Vault. Type: string (or Expression with resultType string).
store This property is required. 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 This property is required. string
Reference LinkedService name.
Type This property is required. string | Pulumi.AzureNative.DataFactory.Type
Linked service reference type.
Parameters Dictionary<string, object>
Arguments for LinkedService.
ReferenceName This property is required. string
Reference LinkedService name.
Type This property is required. string | Type
Linked service reference type.
Parameters map[string]interface{}
Arguments for LinkedService.
referenceName This property is required. String
Reference LinkedService name.
type This property is required. String | Type
Linked service reference type.
parameters Map<String,Object>
Arguments for LinkedService.
referenceName This property is required. string
Reference LinkedService name.
type This property is required. string | Type
Linked service reference type.
parameters {[key: string]: any}
Arguments for LinkedService.
reference_name This property is required. str
Reference LinkedService name.
type This property is required. str | Type
Linked service reference type.
parameters Mapping[str, Any]
Arguments for LinkedService.
referenceName This property is required. String
Reference LinkedService name.
type This property is required. String | "LinkedServiceReference"
Linked service reference type.
parameters Map<Any>
Arguments for LinkedService.

LinkedServiceReferenceResponse
, LinkedServiceReferenceResponseArgs

ReferenceName This property is required. string
Reference LinkedService name.
Type This property is required. string
Linked service reference type.
Parameters Dictionary<string, object>
Arguments for LinkedService.
ReferenceName This property is required. string
Reference LinkedService name.
Type This property is required. string
Linked service reference type.
Parameters map[string]interface{}
Arguments for LinkedService.
referenceName This property is required. String
Reference LinkedService name.
type This property is required. String
Linked service reference type.
parameters Map<String,Object>
Arguments for LinkedService.
referenceName This property is required. string
Reference LinkedService name.
type This property is required. string
Linked service reference type.
parameters {[key: string]: any}
Arguments for LinkedService.
reference_name This property is required. str
Reference LinkedService name.
type This property is required. str
Linked service reference type.
parameters Mapping[str, Any]
Arguments for LinkedService.
referenceName This property is required. String
Reference LinkedService name.
type This property is required. 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.
ResourceId string
The resource id of user assigned managed identity
Annotations []interface{}
List of tags that can be used for describing the Credential.
Description string
Credential description.
ResourceId string
The resource id of user assigned managed identity
annotations List<Object>
List of tags that can be used for describing the Credential.
description String
Credential description.
resourceId String
The resource id of user assigned managed identity
annotations any[]
List of tags that can be used for describing the Credential.
description string
Credential description.
resourceId string
The resource id of user assigned managed identity
annotations Sequence[Any]
List of tags that can be used for describing the Credential.
description str
Credential description.
resource_id str
The resource id of user assigned managed identity
annotations List<Any>
List of tags that can be used for describing the Credential.
description String
Credential description.
resourceId String
The resource id of user assigned managed identity

ManagedIdentityCredentialResponse
, ManagedIdentityCredentialResponseArgs

Annotations List<object>
List of tags that can be used for describing the Credential.
Description string
Credential description.
ResourceId string
The resource id of user assigned managed identity
Annotations []interface{}
List of tags that can be used for describing the Credential.
Description string
Credential description.
ResourceId string
The resource id of user assigned managed identity
annotations List<Object>
List of tags that can be used for describing the Credential.
description String
Credential description.
resourceId String
The resource id of user assigned managed identity
annotations any[]
List of tags that can be used for describing the Credential.
description string
Credential description.
resourceId string
The resource id of user assigned managed identity
annotations Sequence[Any]
List of tags that can be used for describing the Credential.
description str
Credential description.
resource_id str
The resource id of user assigned managed identity
annotations List<Any>
List of tags that can be used for describing the Credential.
description String
Credential description.
resourceId String
The resource id of user assigned managed identity

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

Type
, TypeArgs

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

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} 
Copy

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

Package Details

Repository
Azure Native pulumi/pulumi-azure-native
License
Apache-2.0
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.1.0 published on Tuesday, Apr 8, 2025 by Pulumi