1. Packages
  2. Azure Native v1
  3. API Docs
  4. servicelinker
  5. Linker
These are the docs for Azure Native v1. We recommenend using the latest version, Azure Native v2.
Azure Native v1 v1.104.0 published on Thursday, Jul 6, 2023 by Pulumi

azure-native.servicelinker.Linker

Explore with Pulumi AI

azure-native-v1 logo
These are the docs for Azure Native v1. We recommenend using the latest version, Azure Native v2.
Azure Native v1 v1.104.0 published on Thursday, Jul 6, 2023 by Pulumi

    Linker of source and target resource API Version: 2021-11-01-preview.

    Example Usage

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var linker = new AzureNative.ServiceLinker.Linker("linker", new()
        {
            AuthInfo = new AzureNative.ServiceLinker.Inputs.SecretAuthInfoArgs
            {
                AuthType = "secret",
                Name = "name",
                Secret = "secret",
            },
            LinkerName = "linkName",
            ResourceUri = "subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.Web/sites/test-app",
            TargetId = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.DocumentDb/databaseAccounts/test-acc/mongodbDatabases/test-db",
        });
    
    });
    
    package main
    
    import (
    	servicelinker "github.com/pulumi/pulumi-azure-native-sdk/servicelinker"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := servicelinker.NewLinker(ctx, "linker", &servicelinker.LinkerArgs{
    			AuthInfo: servicelinker.SecretAuthInfo{
    				AuthType: "secret",
    				Name:     "name",
    				Secret:   "secret",
    			},
    			LinkerName:  pulumi.String("linkName"),
    			ResourceUri: pulumi.String("subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.Web/sites/test-app"),
    			TargetId:    pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.DocumentDb/databaseAccounts/test-acc/mongodbDatabases/test-db"),
    		})
    		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.servicelinker.Linker;
    import com.pulumi.azurenative.servicelinker.LinkerArgs;
    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 linker = new Linker("linker", LinkerArgs.builder()        
                .authInfo(Map.ofEntries(
                    Map.entry("authType", "secret"),
                    Map.entry("name", "name"),
                    Map.entry("secret", "secret")
                ))
                .linkerName("linkName")
                .resourceUri("subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.Web/sites/test-app")
                .targetId("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.DocumentDb/databaseAccounts/test-acc/mongodbDatabases/test-db")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    linker = azure_native.servicelinker.Linker("linker",
        auth_info=azure_native.servicelinker.SecretAuthInfoArgs(
            auth_type="secret",
            name="name",
            secret="secret",
        ),
        linker_name="linkName",
        resource_uri="subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.Web/sites/test-app",
        target_id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.DocumentDb/databaseAccounts/test-acc/mongodbDatabases/test-db")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const linker = new azure_native.servicelinker.Linker("linker", {
        authInfo: {
            authType: "secret",
            name: "name",
            secret: "secret",
        },
        linkerName: "linkName",
        resourceUri: "subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.Web/sites/test-app",
        targetId: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.DocumentDb/databaseAccounts/test-acc/mongodbDatabases/test-db",
    });
    
    resources:
      linker:
        type: azure-native:servicelinker:Linker
        properties:
          authInfo:
            authType: secret
            name: name
            secret: secret
          linkerName: linkName
          resourceUri: subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.Web/sites/test-app
          targetId: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.DocumentDb/databaseAccounts/test-acc/mongodbDatabases/test-db
    

    PutLinkWithServiceEndpoint

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var linker = new AzureNative.ServiceLinker.Linker("linker", new()
        {
            AuthInfo = new AzureNative.ServiceLinker.Inputs.SecretAuthInfoArgs
            {
                AuthType = "secret",
                Name = "name",
                Secret = "secret",
            },
            LinkerName = "linkName",
            ResourceUri = "subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.Web/sites/test-app",
            SecretStore = new AzureNative.ServiceLinker.Inputs.SecretStoreArgs
            {
                KeyVaultId = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.KeyVault/vaults/test-kv",
            },
            TargetId = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.DocumentDb/databaseAccounts/test-acc/mongodbDatabases/test-db",
            VNetSolution = new AzureNative.ServiceLinker.Inputs.VNetSolutionArgs
            {
                Type = "serviceEndpoint",
            },
        });
    
    });
    
    package main
    
    import (
    	servicelinker "github.com/pulumi/pulumi-azure-native-sdk/servicelinker"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := servicelinker.NewLinker(ctx, "linker", &servicelinker.LinkerArgs{
    			AuthInfo: servicelinker.SecretAuthInfo{
    				AuthType: "secret",
    				Name:     "name",
    				Secret:   "secret",
    			},
    			LinkerName:  pulumi.String("linkName"),
    			ResourceUri: pulumi.String("subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.Web/sites/test-app"),
    			SecretStore: &servicelinker.SecretStoreArgs{
    				KeyVaultId: pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.KeyVault/vaults/test-kv"),
    			},
    			TargetId: pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.DocumentDb/databaseAccounts/test-acc/mongodbDatabases/test-db"),
    			VNetSolution: &servicelinker.VNetSolutionArgs{
    				Type: pulumi.String("serviceEndpoint"),
    			},
    		})
    		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.servicelinker.Linker;
    import com.pulumi.azurenative.servicelinker.LinkerArgs;
    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 linker = new Linker("linker", LinkerArgs.builder()        
                .authInfo(Map.ofEntries(
                    Map.entry("authType", "secret"),
                    Map.entry("name", "name"),
                    Map.entry("secret", "secret")
                ))
                .linkerName("linkName")
                .resourceUri("subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.Web/sites/test-app")
                .secretStore(Map.of("keyVaultId", "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.KeyVault/vaults/test-kv"))
                .targetId("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.DocumentDb/databaseAccounts/test-acc/mongodbDatabases/test-db")
                .vNetSolution(Map.of("type", "serviceEndpoint"))
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    linker = azure_native.servicelinker.Linker("linker",
        auth_info=azure_native.servicelinker.SecretAuthInfoArgs(
            auth_type="secret",
            name="name",
            secret="secret",
        ),
        linker_name="linkName",
        resource_uri="subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.Web/sites/test-app",
        secret_store=azure_native.servicelinker.SecretStoreArgs(
            key_vault_id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.KeyVault/vaults/test-kv",
        ),
        target_id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.DocumentDb/databaseAccounts/test-acc/mongodbDatabases/test-db",
        v_net_solution=azure_native.servicelinker.VNetSolutionArgs(
            type="serviceEndpoint",
        ))
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const linker = new azure_native.servicelinker.Linker("linker", {
        authInfo: {
            authType: "secret",
            name: "name",
            secret: "secret",
        },
        linkerName: "linkName",
        resourceUri: "subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.Web/sites/test-app",
        secretStore: {
            keyVaultId: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.KeyVault/vaults/test-kv",
        },
        targetId: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.DocumentDb/databaseAccounts/test-acc/mongodbDatabases/test-db",
        vNetSolution: {
            type: "serviceEndpoint",
        },
    });
    
    resources:
      linker:
        type: azure-native:servicelinker:Linker
        properties:
          authInfo:
            authType: secret
            name: name
            secret: secret
          linkerName: linkName
          resourceUri: subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.Web/sites/test-app
          secretStore:
            keyVaultId: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.KeyVault/vaults/test-kv
          targetId: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.DocumentDb/databaseAccounts/test-acc/mongodbDatabases/test-db
          vNetSolution:
            type: serviceEndpoint
    

    Create Linker Resource

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

    Constructor syntax

    new Linker(name: string, args: LinkerArgs, opts?: CustomResourceOptions);
    @overload
    def Linker(resource_name: str,
               args: LinkerArgs,
               opts: Optional[ResourceOptions] = None)
    
    @overload
    def Linker(resource_name: str,
               opts: Optional[ResourceOptions] = None,
               resource_uri: Optional[str] = None,
               auth_info: Optional[Union[SecretAuthInfoArgs, ServicePrincipalCertificateAuthInfoArgs, ServicePrincipalSecretAuthInfoArgs, SystemAssignedIdentityAuthInfoArgs, UserAssignedIdentityAuthInfoArgs]] = None,
               client_type: Optional[Union[str, ClientType]] = None,
               linker_name: Optional[str] = None,
               secret_store: Optional[SecretStoreArgs] = None,
               target_id: Optional[str] = None,
               v_net_solution: Optional[VNetSolutionArgs] = None)
    func NewLinker(ctx *Context, name string, args LinkerArgs, opts ...ResourceOption) (*Linker, error)
    public Linker(string name, LinkerArgs args, CustomResourceOptions? opts = null)
    public Linker(String name, LinkerArgs args)
    public Linker(String name, LinkerArgs args, CustomResourceOptions options)
    
    type: azure-native:servicelinker:Linker
    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 LinkerArgs
    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 LinkerArgs
    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 LinkerArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args LinkerArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args LinkerArgs
    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 linkerResource = new AzureNative.Servicelinker.Linker("linkerResource", new()
    {
        ResourceUri = "string",
        AuthInfo = 
        {
            { "authType", "secret" },
            { "name", "string" },
            { "secret", "string" },
        },
        ClientType = "string",
        LinkerName = "string",
        SecretStore = 
        {
            { "keyVaultId", "string" },
        },
        TargetId = "string",
        VNetSolution = 
        {
            { "type", "string" },
        },
    });
    
    example, err := servicelinker.NewLinker(ctx, "linkerResource", &servicelinker.LinkerArgs{
    	ResourceUri: "string",
    	AuthInfo: map[string]interface{}{
    		"authType": "secret",
    		"name":     "string",
    		"secret":   "string",
    	},
    	ClientType: "string",
    	LinkerName: "string",
    	SecretStore: map[string]interface{}{
    		"keyVaultId": "string",
    	},
    	TargetId: "string",
    	VNetSolution: map[string]interface{}{
    		"type": "string",
    	},
    })
    
    var linkerResource = new Linker("linkerResource", LinkerArgs.builder()
        .resourceUri("string")
        .authInfo(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
        .clientType("string")
        .linkerName("string")
        .secretStore(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
        .targetId("string")
        .vNetSolution(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
        .build());
    
    linker_resource = azure_native.servicelinker.Linker("linkerResource",
        resource_uri=string,
        auth_info={
            authType: secret,
            name: string,
            secret: string,
        },
        client_type=string,
        linker_name=string,
        secret_store={
            keyVaultId: string,
        },
        target_id=string,
        v_net_solution={
            type: string,
        })
    
    const linkerResource = new azure_native.servicelinker.Linker("linkerResource", {
        resourceUri: "string",
        authInfo: {
            authType: "secret",
            name: "string",
            secret: "string",
        },
        clientType: "string",
        linkerName: "string",
        secretStore: {
            keyVaultId: "string",
        },
        targetId: "string",
        vNetSolution: {
            type: "string",
        },
    });
    
    type: azure-native:servicelinker:Linker
    properties:
        authInfo:
            authType: secret
            name: string
            secret: string
        clientType: string
        linkerName: string
        resourceUri: string
        secretStore:
            keyVaultId: string
        targetId: string
        vNetSolution:
            type: string
    

    Linker 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 Linker resource accepts the following input properties:

    ResourceUri string
    The fully qualified Azure Resource manager identifier of the resource to be connected.
    AuthInfo Pulumi.AzureNative.ServiceLinker.Inputs.SecretAuthInfo | Pulumi.AzureNative.ServiceLinker.Inputs.ServicePrincipalCertificateAuthInfo | Pulumi.AzureNative.ServiceLinker.Inputs.ServicePrincipalSecretAuthInfo | Pulumi.AzureNative.ServiceLinker.Inputs.SystemAssignedIdentityAuthInfo | Pulumi.AzureNative.ServiceLinker.Inputs.UserAssignedIdentityAuthInfo
    The authentication type.
    ClientType string | Pulumi.AzureNative.ServiceLinker.ClientType
    The application client type
    LinkerName string
    The name Linker resource.
    SecretStore Pulumi.AzureNative.ServiceLinker.Inputs.SecretStore
    An option to store secret value in secure place
    TargetId string
    The resource Id of target service.
    VNetSolution Pulumi.AzureNative.ServiceLinker.Inputs.VNetSolution
    The VNet solution.
    ResourceUri string
    The fully qualified Azure Resource manager identifier of the resource to be connected.
    AuthInfo SecretAuthInfoArgs | ServicePrincipalCertificateAuthInfoArgs | ServicePrincipalSecretAuthInfoArgs | SystemAssignedIdentityAuthInfoArgs | UserAssignedIdentityAuthInfoArgs
    The authentication type.
    ClientType string | ClientType
    The application client type
    LinkerName string
    The name Linker resource.
    SecretStore SecretStoreArgs
    An option to store secret value in secure place
    TargetId string
    The resource Id of target service.
    VNetSolution VNetSolutionArgs
    The VNet solution.
    resourceUri String
    The fully qualified Azure Resource manager identifier of the resource to be connected.
    authInfo SecretAuthInfo | ServicePrincipalCertificateAuthInfo | ServicePrincipalSecretAuthInfo | SystemAssignedIdentityAuthInfo | UserAssignedIdentityAuthInfo
    The authentication type.
    clientType String | ClientType
    The application client type
    linkerName String
    The name Linker resource.
    secretStore SecretStore
    An option to store secret value in secure place
    targetId String
    The resource Id of target service.
    vNetSolution VNetSolution
    The VNet solution.
    resourceUri string
    The fully qualified Azure Resource manager identifier of the resource to be connected.
    authInfo SecretAuthInfo | ServicePrincipalCertificateAuthInfo | ServicePrincipalSecretAuthInfo | SystemAssignedIdentityAuthInfo | UserAssignedIdentityAuthInfo
    The authentication type.
    clientType string | ClientType
    The application client type
    linkerName string
    The name Linker resource.
    secretStore SecretStore
    An option to store secret value in secure place
    targetId string
    The resource Id of target service.
    vNetSolution VNetSolution
    The VNet solution.
    resource_uri str
    The fully qualified Azure Resource manager identifier of the resource to be connected.
    auth_info SecretAuthInfoArgs | ServicePrincipalCertificateAuthInfoArgs | ServicePrincipalSecretAuthInfoArgs | SystemAssignedIdentityAuthInfoArgs | UserAssignedIdentityAuthInfoArgs
    The authentication type.
    client_type str | ClientType
    The application client type
    linker_name str
    The name Linker resource.
    secret_store SecretStoreArgs
    An option to store secret value in secure place
    target_id str
    The resource Id of target service.
    v_net_solution VNetSolutionArgs
    The VNet solution.
    resourceUri String
    The fully qualified Azure Resource manager identifier of the resource to be connected.
    authInfo Property Map | Property Map | Property Map | Property Map | Property Map
    The authentication type.
    clientType String | "none" | "dotnet" | "java" | "python" | "go" | "php" | "ruby" | "django" | "nodejs" | "springBoot"
    The application client type
    linkerName String
    The name Linker resource.
    secretStore Property Map
    An option to store secret value in secure place
    targetId String
    The resource Id of target service.
    vNetSolution Property Map
    The VNet solution.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    ProvisioningState string
    The provisioning state.
    SystemData Pulumi.AzureNative.ServiceLinker.Outputs.SystemDataResponse
    The system data.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    ProvisioningState string
    The provisioning state.
    SystemData SystemDataResponse
    The system data.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    provisioningState String
    The provisioning state.
    systemData SystemDataResponse
    The system data.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource
    provisioningState string
    The provisioning state.
    systemData SystemDataResponse
    The system data.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the resource
    provisioning_state str
    The provisioning state.
    system_data SystemDataResponse
    The system data.
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    provisioningState String
    The provisioning state.
    systemData Property Map
    The system data.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

    Supporting Types

    ClientType, ClientTypeArgs

    None
    none
    Dotnet
    dotnet
    Java
    java
    Python
    python
    Go
    go
    Php
    php
    Ruby
    ruby
    Django
    django
    Nodejs
    nodejs
    SpringBoot
    springBoot
    ClientTypeNone
    none
    ClientTypeDotnet
    dotnet
    ClientTypeJava
    java
    ClientTypePython
    python
    ClientTypeGo
    go
    ClientTypePhp
    php
    ClientTypeRuby
    ruby
    ClientTypeDjango
    django
    ClientTypeNodejs
    nodejs
    ClientTypeSpringBoot
    springBoot
    None
    none
    Dotnet
    dotnet
    Java
    java
    Python
    python
    Go
    go
    Php
    php
    Ruby
    ruby
    Django
    django
    Nodejs
    nodejs
    SpringBoot
    springBoot
    None
    none
    Dotnet
    dotnet
    Java
    java
    Python
    python
    Go
    go
    Php
    php
    Ruby
    ruby
    Django
    django
    Nodejs
    nodejs
    SpringBoot
    springBoot
    NONE
    none
    DOTNET
    dotnet
    JAVA
    java
    PYTHON
    python
    GO
    go
    PHP
    php
    RUBY
    ruby
    DJANGO
    django
    NODEJS
    nodejs
    SPRING_BOOT
    springBoot
    "none"
    none
    "dotnet"
    dotnet
    "java"
    java
    "python"
    python
    "go"
    go
    "php"
    php
    "ruby"
    ruby
    "django"
    django
    "nodejs"
    nodejs
    "springBoot"
    springBoot

    SecretAuthInfo, SecretAuthInfoArgs

    Name string
    Username or account name for secret auth.
    Secret string
    Password or account key for secret auth.
    Name string
    Username or account name for secret auth.
    Secret string
    Password or account key for secret auth.
    name String
    Username or account name for secret auth.
    secret String
    Password or account key for secret auth.
    name string
    Username or account name for secret auth.
    secret string
    Password or account key for secret auth.
    name str
    Username or account name for secret auth.
    secret str
    Password or account key for secret auth.
    name String
    Username or account name for secret auth.
    secret String
    Password or account key for secret auth.

    SecretAuthInfoResponse, SecretAuthInfoResponseArgs

    Name string
    Username or account name for secret auth.
    Secret string
    Password or account key for secret auth.
    Name string
    Username or account name for secret auth.
    Secret string
    Password or account key for secret auth.
    name String
    Username or account name for secret auth.
    secret String
    Password or account key for secret auth.
    name string
    Username or account name for secret auth.
    secret string
    Password or account key for secret auth.
    name str
    Username or account name for secret auth.
    secret str
    Password or account key for secret auth.
    name String
    Username or account name for secret auth.
    secret String
    Password or account key for secret auth.

    SecretStore, SecretStoreArgs

    KeyVaultId string
    The key vault id to store secret
    KeyVaultId string
    The key vault id to store secret
    keyVaultId String
    The key vault id to store secret
    keyVaultId string
    The key vault id to store secret
    key_vault_id str
    The key vault id to store secret
    keyVaultId String
    The key vault id to store secret

    SecretStoreResponse, SecretStoreResponseArgs

    KeyVaultId string
    The key vault id to store secret
    KeyVaultId string
    The key vault id to store secret
    keyVaultId String
    The key vault id to store secret
    keyVaultId string
    The key vault id to store secret
    key_vault_id str
    The key vault id to store secret
    keyVaultId String
    The key vault id to store secret

    ServicePrincipalCertificateAuthInfo, ServicePrincipalCertificateAuthInfoArgs

    Certificate string
    ServicePrincipal certificate for servicePrincipal auth.
    ClientId string
    Application clientId for servicePrincipal auth.
    PrincipalId string
    Principal Id for servicePrincipal auth.
    Certificate string
    ServicePrincipal certificate for servicePrincipal auth.
    ClientId string
    Application clientId for servicePrincipal auth.
    PrincipalId string
    Principal Id for servicePrincipal auth.
    certificate String
    ServicePrincipal certificate for servicePrincipal auth.
    clientId String
    Application clientId for servicePrincipal auth.
    principalId String
    Principal Id for servicePrincipal auth.
    certificate string
    ServicePrincipal certificate for servicePrincipal auth.
    clientId string
    Application clientId for servicePrincipal auth.
    principalId string
    Principal Id for servicePrincipal auth.
    certificate str
    ServicePrincipal certificate for servicePrincipal auth.
    client_id str
    Application clientId for servicePrincipal auth.
    principal_id str
    Principal Id for servicePrincipal auth.
    certificate String
    ServicePrincipal certificate for servicePrincipal auth.
    clientId String
    Application clientId for servicePrincipal auth.
    principalId String
    Principal Id for servicePrincipal auth.

    ServicePrincipalCertificateAuthInfoResponse, ServicePrincipalCertificateAuthInfoResponseArgs

    Certificate string
    ServicePrincipal certificate for servicePrincipal auth.
    ClientId string
    Application clientId for servicePrincipal auth.
    PrincipalId string
    Principal Id for servicePrincipal auth.
    Certificate string
    ServicePrincipal certificate for servicePrincipal auth.
    ClientId string
    Application clientId for servicePrincipal auth.
    PrincipalId string
    Principal Id for servicePrincipal auth.
    certificate String
    ServicePrincipal certificate for servicePrincipal auth.
    clientId String
    Application clientId for servicePrincipal auth.
    principalId String
    Principal Id for servicePrincipal auth.
    certificate string
    ServicePrincipal certificate for servicePrincipal auth.
    clientId string
    Application clientId for servicePrincipal auth.
    principalId string
    Principal Id for servicePrincipal auth.
    certificate str
    ServicePrincipal certificate for servicePrincipal auth.
    client_id str
    Application clientId for servicePrincipal auth.
    principal_id str
    Principal Id for servicePrincipal auth.
    certificate String
    ServicePrincipal certificate for servicePrincipal auth.
    clientId String
    Application clientId for servicePrincipal auth.
    principalId String
    Principal Id for servicePrincipal auth.

    ServicePrincipalSecretAuthInfo, ServicePrincipalSecretAuthInfoArgs

    ClientId string
    ServicePrincipal application clientId for servicePrincipal auth.
    PrincipalId string
    Principal Id for servicePrincipal auth.
    Secret string
    Secret for servicePrincipal auth.
    ClientId string
    ServicePrincipal application clientId for servicePrincipal auth.
    PrincipalId string
    Principal Id for servicePrincipal auth.
    Secret string
    Secret for servicePrincipal auth.
    clientId String
    ServicePrincipal application clientId for servicePrincipal auth.
    principalId String
    Principal Id for servicePrincipal auth.
    secret String
    Secret for servicePrincipal auth.
    clientId string
    ServicePrincipal application clientId for servicePrincipal auth.
    principalId string
    Principal Id for servicePrincipal auth.
    secret string
    Secret for servicePrincipal auth.
    client_id str
    ServicePrincipal application clientId for servicePrincipal auth.
    principal_id str
    Principal Id for servicePrincipal auth.
    secret str
    Secret for servicePrincipal auth.
    clientId String
    ServicePrincipal application clientId for servicePrincipal auth.
    principalId String
    Principal Id for servicePrincipal auth.
    secret String
    Secret for servicePrincipal auth.

    ServicePrincipalSecretAuthInfoResponse, ServicePrincipalSecretAuthInfoResponseArgs

    ClientId string
    ServicePrincipal application clientId for servicePrincipal auth.
    PrincipalId string
    Principal Id for servicePrincipal auth.
    Secret string
    Secret for servicePrincipal auth.
    ClientId string
    ServicePrincipal application clientId for servicePrincipal auth.
    PrincipalId string
    Principal Id for servicePrincipal auth.
    Secret string
    Secret for servicePrincipal auth.
    clientId String
    ServicePrincipal application clientId for servicePrincipal auth.
    principalId String
    Principal Id for servicePrincipal auth.
    secret String
    Secret for servicePrincipal auth.
    clientId string
    ServicePrincipal application clientId for servicePrincipal auth.
    principalId string
    Principal Id for servicePrincipal auth.
    secret string
    Secret for servicePrincipal auth.
    client_id str
    ServicePrincipal application clientId for servicePrincipal auth.
    principal_id str
    Principal Id for servicePrincipal auth.
    secret str
    Secret for servicePrincipal auth.
    clientId String
    ServicePrincipal application clientId for servicePrincipal auth.
    principalId String
    Principal Id for servicePrincipal auth.
    secret String
    Secret for servicePrincipal auth.

    SystemAssignedIdentityAuthInfo, SystemAssignedIdentityAuthInfoArgs

    SystemAssignedIdentityAuthInfoResponse, SystemAssignedIdentityAuthInfoResponseArgs

    SystemDataResponse, SystemDataResponseArgs

    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.
    createdAt string
    The timestamp of resource creation (UTC).
    createdBy string
    The identity that created the resource.
    createdByType string
    The type of identity that created the resource.
    lastModifiedAt string
    The timestamp of resource last modification (UTC)
    lastModifiedBy string
    The identity that last modified the resource.
    lastModifiedByType string
    The type of identity that last modified the resource.
    created_at str
    The timestamp of resource creation (UTC).
    created_by str
    The identity that created the resource.
    created_by_type str
    The type of identity that created the resource.
    last_modified_at str
    The timestamp of resource last modification (UTC)
    last_modified_by str
    The identity that last modified the resource.
    last_modified_by_type str
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.

    UserAssignedIdentityAuthInfo, UserAssignedIdentityAuthInfoArgs

    ClientId string
    Client Id for userAssignedIdentity.
    SubscriptionId string
    Subscription id for userAssignedIdentity.
    ClientId string
    Client Id for userAssignedIdentity.
    SubscriptionId string
    Subscription id for userAssignedIdentity.
    clientId String
    Client Id for userAssignedIdentity.
    subscriptionId String
    Subscription id for userAssignedIdentity.
    clientId string
    Client Id for userAssignedIdentity.
    subscriptionId string
    Subscription id for userAssignedIdentity.
    client_id str
    Client Id for userAssignedIdentity.
    subscription_id str
    Subscription id for userAssignedIdentity.
    clientId String
    Client Id for userAssignedIdentity.
    subscriptionId String
    Subscription id for userAssignedIdentity.

    UserAssignedIdentityAuthInfoResponse, UserAssignedIdentityAuthInfoResponseArgs

    ClientId string
    Client Id for userAssignedIdentity.
    SubscriptionId string
    Subscription id for userAssignedIdentity.
    ClientId string
    Client Id for userAssignedIdentity.
    SubscriptionId string
    Subscription id for userAssignedIdentity.
    clientId String
    Client Id for userAssignedIdentity.
    subscriptionId String
    Subscription id for userAssignedIdentity.
    clientId string
    Client Id for userAssignedIdentity.
    subscriptionId string
    Subscription id for userAssignedIdentity.
    client_id str
    Client Id for userAssignedIdentity.
    subscription_id str
    Subscription id for userAssignedIdentity.
    clientId String
    Client Id for userAssignedIdentity.
    subscriptionId String
    Subscription id for userAssignedIdentity.

    VNetSolution, VNetSolutionArgs

    Type string | VNetSolutionType
    Type of VNet solution.
    type String | VNetSolutionType
    Type of VNet solution.
    type string | VNetSolutionType
    Type of VNet solution.
    type str | VNetSolutionType
    Type of VNet solution.
    type String | "serviceEndpoint" | "privateLink"
    Type of VNet solution.

    VNetSolutionResponse, VNetSolutionResponseArgs

    Type string
    Type of VNet solution.
    Type string
    Type of VNet solution.
    type String
    Type of VNet solution.
    type string
    Type of VNet solution.
    type str
    Type of VNet solution.
    type String
    Type of VNet solution.

    VNetSolutionType, VNetSolutionTypeArgs

    ServiceEndpoint
    serviceEndpoint
    PrivateLink
    privateLink
    VNetSolutionTypeServiceEndpoint
    serviceEndpoint
    VNetSolutionTypePrivateLink
    privateLink
    ServiceEndpoint
    serviceEndpoint
    PrivateLink
    privateLink
    ServiceEndpoint
    serviceEndpoint
    PrivateLink
    privateLink
    SERVICE_ENDPOINT
    serviceEndpoint
    PRIVATE_LINK
    privateLink
    "serviceEndpoint"
    serviceEndpoint
    "privateLink"
    privateLink

    Import

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

    $ pulumi import azure-native:servicelinker:Linker linkName /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.Web/sites/test-app/providers/Microsoft.ServiceLinker/links/linkName 
    

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

    Package Details

    Repository
    azure-native-v1 pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native-v1 logo
    These are the docs for Azure Native v1. We recommenend using the latest version, Azure Native v2.
    Azure Native v1 v1.104.0 published on Thursday, Jul 6, 2023 by Pulumi