1. Packages
  2. DataRobot
  3. API Docs
  4. AzureCredential
DataRobot v0.8.18 published on Thursday, Mar 27, 2025 by DataRobot, Inc.

datarobot.AzureCredential

Explore with Pulumi AI

datarobot logo
DataRobot v0.8.18 published on Thursday, Mar 27, 2025 by DataRobot, Inc.

    Azure Credential

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as datarobot from "@datarobot/pulumi-datarobot";
    
    const example = new datarobot.AzureCredential("example", {
        azureConnectionString: "example_connection_string",
        description: "Description for the example Azure credential",
    });
    
    import pulumi
    import pulumi_datarobot as datarobot
    
    example = datarobot.AzureCredential("example",
        azure_connection_string="example_connection_string",
        description="Description for the example Azure credential")
    
    package main
    
    import (
    	"github.com/datarobot-community/pulumi-datarobot/sdk/go/datarobot"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := datarobot.NewAzureCredential(ctx, "example", &datarobot.AzureCredentialArgs{
    			AzureConnectionString: pulumi.String("example_connection_string"),
    			Description:           pulumi.String("Description for the example Azure credential"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Datarobot = DataRobotPulumi.Datarobot;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Datarobot.AzureCredential("example", new()
        {
            AzureConnectionString = "example_connection_string",
            Description = "Description for the example Azure credential",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.datarobot.AzureCredential;
    import com.pulumi.datarobot.AzureCredentialArgs;
    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 example = new AzureCredential("example", AzureCredentialArgs.builder()
                .azureConnectionString("example_connection_string")
                .description("Description for the example Azure credential")
                .build());
    
        }
    }
    
    resources:
      example:
        type: datarobot:AzureCredential
        properties:
          azureConnectionString: example_connection_string
          description: Description for the example Azure credential
    

    Create AzureCredential Resource

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

    Constructor syntax

    new AzureCredential(name: string, args: AzureCredentialArgs, opts?: CustomResourceOptions);
    @overload
    def AzureCredential(resource_name: str,
                        args: AzureCredentialArgs,
                        opts: Optional[ResourceOptions] = None)
    
    @overload
    def AzureCredential(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        azure_connection_string: Optional[str] = None,
                        description: Optional[str] = None,
                        name: Optional[str] = None)
    func NewAzureCredential(ctx *Context, name string, args AzureCredentialArgs, opts ...ResourceOption) (*AzureCredential, error)
    public AzureCredential(string name, AzureCredentialArgs args, CustomResourceOptions? opts = null)
    public AzureCredential(String name, AzureCredentialArgs args)
    public AzureCredential(String name, AzureCredentialArgs args, CustomResourceOptions options)
    
    type: datarobot:AzureCredential
    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 AzureCredentialArgs
    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 AzureCredentialArgs
    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 AzureCredentialArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AzureCredentialArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AzureCredentialArgs
    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 azureCredentialResource = new Datarobot.AzureCredential("azureCredentialResource", new()
    {
        AzureConnectionString = "string",
        Description = "string",
        Name = "string",
    });
    
    example, err := datarobot.NewAzureCredential(ctx, "azureCredentialResource", &datarobot.AzureCredentialArgs{
    	AzureConnectionString: pulumi.String("string"),
    	Description:           pulumi.String("string"),
    	Name:                  pulumi.String("string"),
    })
    
    var azureCredentialResource = new AzureCredential("azureCredentialResource", AzureCredentialArgs.builder()
        .azureConnectionString("string")
        .description("string")
        .name("string")
        .build());
    
    azure_credential_resource = datarobot.AzureCredential("azureCredentialResource",
        azure_connection_string="string",
        description="string",
        name="string")
    
    const azureCredentialResource = new datarobot.AzureCredential("azureCredentialResource", {
        azureConnectionString: "string",
        description: "string",
        name: "string",
    });
    
    type: datarobot:AzureCredential
    properties:
        azureConnectionString: string
        description: string
        name: string
    

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

    AzureConnectionString string
    The connection string of the Azure Credential.
    Description string
    The description of the Azure Credential.
    Name string
    The name of the Azure Credential.
    AzureConnectionString string
    The connection string of the Azure Credential.
    Description string
    The description of the Azure Credential.
    Name string
    The name of the Azure Credential.
    azureConnectionString String
    The connection string of the Azure Credential.
    description String
    The description of the Azure Credential.
    name String
    The name of the Azure Credential.
    azureConnectionString string
    The connection string of the Azure Credential.
    description string
    The description of the Azure Credential.
    name string
    The name of the Azure Credential.
    azure_connection_string str
    The connection string of the Azure Credential.
    description str
    The description of the Azure Credential.
    name str
    The name of the Azure Credential.
    azureConnectionString String
    The connection string of the Azure Credential.
    description String
    The description of the Azure Credential.
    name String
    The name of the Azure Credential.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing AzureCredential Resource

    Get an existing AzureCredential resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: AzureCredentialState, opts?: CustomResourceOptions): AzureCredential
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            azure_connection_string: Optional[str] = None,
            description: Optional[str] = None,
            name: Optional[str] = None) -> AzureCredential
    func GetAzureCredential(ctx *Context, name string, id IDInput, state *AzureCredentialState, opts ...ResourceOption) (*AzureCredential, error)
    public static AzureCredential Get(string name, Input<string> id, AzureCredentialState? state, CustomResourceOptions? opts = null)
    public static AzureCredential get(String name, Output<String> id, AzureCredentialState state, CustomResourceOptions options)
    resources:  _:    type: datarobot:AzureCredential    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    AzureConnectionString string
    The connection string of the Azure Credential.
    Description string
    The description of the Azure Credential.
    Name string
    The name of the Azure Credential.
    AzureConnectionString string
    The connection string of the Azure Credential.
    Description string
    The description of the Azure Credential.
    Name string
    The name of the Azure Credential.
    azureConnectionString String
    The connection string of the Azure Credential.
    description String
    The description of the Azure Credential.
    name String
    The name of the Azure Credential.
    azureConnectionString string
    The connection string of the Azure Credential.
    description string
    The description of the Azure Credential.
    name string
    The name of the Azure Credential.
    azure_connection_string str
    The connection string of the Azure Credential.
    description str
    The description of the Azure Credential.
    name str
    The name of the Azure Credential.
    azureConnectionString String
    The connection string of the Azure Credential.
    description String
    The description of the Azure Credential.
    name String
    The name of the Azure Credential.

    Package Details

    Repository
    datarobot datarobot-community/pulumi-datarobot
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the datarobot Terraform Provider.
    datarobot logo
    DataRobot v0.8.18 published on Thursday, Mar 27, 2025 by DataRobot, Inc.