1. Packages
  2. Azure Native
  3. API Docs
  4. discovery
  5. Tool
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Viewing docs for Azure Native v3.16.0
published on Friday, Mar 20, 2026 by Pulumi
azure-native logo
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Viewing docs for Azure Native v3.16.0
published on Friday, Mar 20, 2026 by Pulumi

    Tool tracked resource

    Uses Azure REST API version 2026-02-01-preview.

    Example Usage

    Tools_CreateOrUpdate_MaximumSet

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var tool = new AzureNative.Discovery.Tool("tool", new()
        {
            Location = "uksouth",
            Properties = new AzureNative.Discovery.Inputs.ToolPropertiesArgs
            {
                DefinitionContent = new Dictionary<string, object?>
                {
                    ["actions"] = new[]
                    {
                        new Dictionary<string, object?>
                        {
                            ["command"] = "python3 submit_dft.py ",
                            ["description"] = "Optimize geometry of 'xyz's from the input data asset. This is a prerequisite for all other discovery computations.",
                            ["environment_variables"] = new[]
                            {
                                new Dictionary<string, object?>
                                {
                                    ["name"] = "OUTPUT_DIRECTORY_PATH",
                                    ["value"] = "{{ outputDataAssetId }}",
                                },
                            },
                            ["input_schema"] = new Dictionary<string, object?>
                            {
                                ["properties"] = new Dictionary<string, object?>
                                {
                                    ["basisSet"] = new Dictionary<string, object?>
                                    {
                                        ["description"] = "Basis set. Must be one of the supported basis sets (e.g., def2-svp, def2-tzvp).",
                                        ["type"] = "string",
                                    },
                                    ["inputDataAssetId"] = new Dictionary<string, object?>
                                    {
                                        ["description"] = "Identifier of the input data asset",
                                        ["type"] = "string",
                                    },
                                    ["outputDataAssetId"] = new Dictionary<string, object?>
                                    {
                                        ["description"] = "Identifier to use for the new output data asset which will be created.",
                                        ["type"] = "string",
                                    },
                                    ["xyzColumnName"] = new Dictionary<string, object?>
                                    {
                                        ["description"] = "Column containing xyz data within the input data table asset",
                                        ["type"] = "string",
                                    },
                                },
                                ["required"] = new[]
                                {
                                    "inputDataAssetId",
                                    "xyzColumnName",
                                },
                                ["type"] = "object",
                            },
                            ["name"] = "GeometryOptimization",
                        },
                    },
                    ["description"] = "Advanced DFT computational tools for molecular geometry optimization and property calculations",
                    ["name"] = "discovery",
                    ["tool_id"] = "discovery-m1",
                },
                EnvironmentVariables = 
                {
                    { "key5460", "xtjzjghbist" },
                },
                Version = "sjepxewtq",
            },
            ResourceGroupName = "rgdiscovery",
            Tags = 
            {
                { "key2611", "cgsblxvyzevbd" },
            },
            ToolName = "b5d4239f788c20b58b",
        });
    
    });
    
    package main
    
    import (
    	discovery "github.com/pulumi/pulumi-azure-native-sdk/discovery/v3"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := discovery.NewTool(ctx, "tool", &discovery.ToolArgs{
    			Location: pulumi.String("uksouth"),
    			Properties: &discovery.ToolPropertiesArgs{
    				DefinitionContent: pulumi.Any(map[string]interface{}{
    					"actions": []map[string]interface{}{
    						map[string]interface{}{
    							"command":     "python3 submit_dft.py ",
    							"description": "Optimize geometry of 'xyz's from the input data asset. This is a prerequisite for all other discovery computations.",
    							"environment_variables": []map[string]interface{}{
    								map[string]interface{}{
    									"name":  "OUTPUT_DIRECTORY_PATH",
    									"value": "{{ outputDataAssetId }}",
    								},
    							},
    							"input_schema": map[string]interface{}{
    								"properties": map[string]interface{}{
    									"basisSet": map[string]interface{}{
    										"description": "Basis set. Must be one of the supported basis sets (e.g., def2-svp, def2-tzvp).",
    										"type":        "string",
    									},
    									"inputDataAssetId": map[string]interface{}{
    										"description": "Identifier of the input data asset",
    										"type":        "string",
    									},
    									"outputDataAssetId": map[string]interface{}{
    										"description": "Identifier to use for the new output data asset which will be created.",
    										"type":        "string",
    									},
    									"xyzColumnName": map[string]interface{}{
    										"description": "Column containing xyz data within the input data table asset",
    										"type":        "string",
    									},
    								},
    								"required": []string{
    									"inputDataAssetId",
    									"xyzColumnName",
    								},
    								"type": "object",
    							},
    							"name": "GeometryOptimization",
    						},
    					},
    					"description": "Advanced DFT computational tools for molecular geometry optimization and property calculations",
    					"name":        "discovery",
    					"tool_id":     "discovery-m1",
    				}),
    				EnvironmentVariables: pulumi.StringMap{
    					"key5460": pulumi.String("xtjzjghbist"),
    				},
    				Version: pulumi.String("sjepxewtq"),
    			},
    			ResourceGroupName: pulumi.String("rgdiscovery"),
    			Tags: pulumi.StringMap{
    				"key2611": pulumi.String("cgsblxvyzevbd"),
    			},
    			ToolName: pulumi.String("b5d4239f788c20b58b"),
    		})
    		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.discovery.Tool;
    import com.pulumi.azurenative.discovery.ToolArgs;
    import com.pulumi.azurenative.discovery.inputs.ToolPropertiesArgs;
    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 tool = new Tool("tool", ToolArgs.builder()
                .location("uksouth")
                .properties(ToolPropertiesArgs.builder()
                    .definitionContent(Map.ofEntries(
                        Map.entry("actions", Map.ofEntries(
                            Map.entry("command", "python3 submit_dft.py "),
                            Map.entry("description", "Optimize geometry of 'xyz's from the input data asset. This is a prerequisite for all other discovery computations."),
                            Map.entry("environment_variables", Map.ofEntries(
                                Map.entry("name", "OUTPUT_DIRECTORY_PATH"),
                                Map.entry("value", "{{ outputDataAssetId }}")
                            )),
                            Map.entry("input_schema", Map.ofEntries(
                                Map.entry("properties", Map.ofEntries(
                                    Map.entry("basisSet", Map.ofEntries(
                                        Map.entry("description", "Basis set. Must be one of the supported basis sets (e.g., def2-svp, def2-tzvp)."),
                                        Map.entry("type", "string")
                                    )),
                                    Map.entry("inputDataAssetId", Map.ofEntries(
                                        Map.entry("description", "Identifier of the input data asset"),
                                        Map.entry("type", "string")
                                    )),
                                    Map.entry("outputDataAssetId", Map.ofEntries(
                                        Map.entry("description", "Identifier to use for the new output data asset which will be created."),
                                        Map.entry("type", "string")
                                    )),
                                    Map.entry("xyzColumnName", Map.ofEntries(
                                        Map.entry("description", "Column containing xyz data within the input data table asset"),
                                        Map.entry("type", "string")
                                    ))
                                )),
                                Map.entry("required",                             
                                    "inputDataAssetId",
                                    "xyzColumnName"),
                                Map.entry("type", "object")
                            )),
                            Map.entry("name", "GeometryOptimization")
                        )),
                        Map.entry("description", "Advanced DFT computational tools for molecular geometry optimization and property calculations"),
                        Map.entry("name", "discovery"),
                        Map.entry("tool_id", "discovery-m1")
                    ))
                    .environmentVariables(Map.of("key5460", "xtjzjghbist"))
                    .version("sjepxewtq")
                    .build())
                .resourceGroupName("rgdiscovery")
                .tags(Map.of("key2611", "cgsblxvyzevbd"))
                .toolName("b5d4239f788c20b58b")
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const tool = new azure_native.discovery.Tool("tool", {
        location: "uksouth",
        properties: {
            definitionContent: {
                actions: [{
                    command: "python3 submit_dft.py ",
                    description: "Optimize geometry of 'xyz's from the input data asset. This is a prerequisite for all other discovery computations.",
                    environment_variables: [{
                        name: "OUTPUT_DIRECTORY_PATH",
                        value: "{{ outputDataAssetId }}",
                    }],
                    input_schema: {
                        properties: {
                            basisSet: {
                                description: "Basis set. Must be one of the supported basis sets (e.g., def2-svp, def2-tzvp).",
                                type: "string",
                            },
                            inputDataAssetId: {
                                description: "Identifier of the input data asset",
                                type: "string",
                            },
                            outputDataAssetId: {
                                description: "Identifier to use for the new output data asset which will be created.",
                                type: "string",
                            },
                            xyzColumnName: {
                                description: "Column containing xyz data within the input data table asset",
                                type: "string",
                            },
                        },
                        required: [
                            "inputDataAssetId",
                            "xyzColumnName",
                        ],
                        type: "object",
                    },
                    name: "GeometryOptimization",
                }],
                description: "Advanced DFT computational tools for molecular geometry optimization and property calculations",
                name: "discovery",
                tool_id: "discovery-m1",
            },
            environmentVariables: {
                key5460: "xtjzjghbist",
            },
            version: "sjepxewtq",
        },
        resourceGroupName: "rgdiscovery",
        tags: {
            key2611: "cgsblxvyzevbd",
        },
        toolName: "b5d4239f788c20b58b",
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    tool = azure_native.discovery.Tool("tool",
        location="uksouth",
        properties={
            "definition_content": {
                "actions": [{
                    "command": "python3 submit_dft.py ",
                    "description": "Optimize geometry of 'xyz's from the input data asset. This is a prerequisite for all other discovery computations.",
                    "environment_variables": [{
                        "name": "OUTPUT_DIRECTORY_PATH",
                        "value": "{{ outputDataAssetId }}",
                    }],
                    "input_schema": {
                        "properties": {
                            "basisSet": {
                                "description": "Basis set. Must be one of the supported basis sets (e.g., def2-svp, def2-tzvp).",
                                "type": "string",
                            },
                            "inputDataAssetId": {
                                "description": "Identifier of the input data asset",
                                "type": "string",
                            },
                            "outputDataAssetId": {
                                "description": "Identifier to use for the new output data asset which will be created.",
                                "type": "string",
                            },
                            "xyzColumnName": {
                                "description": "Column containing xyz data within the input data table asset",
                                "type": "string",
                            },
                        },
                        "required": [
                            "inputDataAssetId",
                            "xyzColumnName",
                        ],
                        "type": "object",
                    },
                    "name": "GeometryOptimization",
                }],
                "description": "Advanced DFT computational tools for molecular geometry optimization and property calculations",
                "name": "discovery",
                "tool_id": "discovery-m1",
            },
            "environment_variables": {
                "key5460": "xtjzjghbist",
            },
            "version": "sjepxewtq",
        },
        resource_group_name="rgdiscovery",
        tags={
            "key2611": "cgsblxvyzevbd",
        },
        tool_name="b5d4239f788c20b58b")
    
    resources:
      tool:
        type: azure-native:discovery:Tool
        properties:
          location: uksouth
          properties:
            definitionContent:
              actions:
                - command: 'python3 submit_dft.py '
                  description: Optimize geometry of 'xyz's from the input data asset. This is a prerequisite for all other discovery computations.
                  environment_variables:
                    - name: OUTPUT_DIRECTORY_PATH
                      value: '{{ outputDataAssetId }}'
                  input_schema:
                    properties:
                      basisSet:
                        description: Basis set. Must be one of the supported basis sets (e.g., def2-svp, def2-tzvp).
                        type: string
                      inputDataAssetId:
                        description: Identifier of the input data asset
                        type: string
                      outputDataAssetId:
                        description: Identifier to use for the new output data asset which will be created.
                        type: string
                      xyzColumnName:
                        description: Column containing xyz data within the input data table asset
                        type: string
                    required:
                      - inputDataAssetId
                      - xyzColumnName
                    type: object
                  name: GeometryOptimization
              description: Advanced DFT computational tools for molecular geometry optimization and property calculations
              name: discovery
              tool_id: discovery-m1
            environmentVariables:
              key5460: xtjzjghbist
            version: sjepxewtq
          resourceGroupName: rgdiscovery
          tags:
            key2611: cgsblxvyzevbd
          toolName: b5d4239f788c20b58b
    

    Create Tool Resource

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

    Constructor syntax

    new Tool(name: string, args: ToolArgs, opts?: CustomResourceOptions);
    @overload
    def Tool(resource_name: str,
             args: ToolArgs,
             opts: Optional[ResourceOptions] = None)
    
    @overload
    def Tool(resource_name: str,
             opts: Optional[ResourceOptions] = None,
             resource_group_name: Optional[str] = None,
             location: Optional[str] = None,
             properties: Optional[ToolPropertiesArgs] = None,
             tags: Optional[Mapping[str, str]] = None,
             tool_name: Optional[str] = None)
    func NewTool(ctx *Context, name string, args ToolArgs, opts ...ResourceOption) (*Tool, error)
    public Tool(string name, ToolArgs args, CustomResourceOptions? opts = null)
    public Tool(String name, ToolArgs args)
    public Tool(String name, ToolArgs args, CustomResourceOptions options)
    
    type: azure-native:discovery:Tool
    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 ToolArgs
    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 ToolArgs
    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 ToolArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ToolArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ToolArgs
    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 toolResource = new AzureNative.Discovery.Tool("toolResource", new()
    {
        ResourceGroupName = "string",
        Location = "string",
        Properties = new AzureNative.Discovery.Inputs.ToolPropertiesArgs
        {
            DefinitionContent = "any",
            Version = "string",
            EnvironmentVariables = 
            {
                { "string", "string" },
            },
        },
        Tags = 
        {
            { "string", "string" },
        },
        ToolName = "string",
    });
    
    example, err := discovery.NewTool(ctx, "toolResource", &discovery.ToolArgs{
    	ResourceGroupName: pulumi.String("string"),
    	Location:          pulumi.String("string"),
    	Properties: &discovery.ToolPropertiesArgs{
    		DefinitionContent: pulumi.Any("any"),
    		Version:           pulumi.String("string"),
    		EnvironmentVariables: pulumi.StringMap{
    			"string": pulumi.String("string"),
    		},
    	},
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	ToolName: pulumi.String("string"),
    })
    
    var toolResource = new Tool("toolResource", ToolArgs.builder()
        .resourceGroupName("string")
        .location("string")
        .properties(ToolPropertiesArgs.builder()
            .definitionContent("any")
            .version("string")
            .environmentVariables(Map.of("string", "string"))
            .build())
        .tags(Map.of("string", "string"))
        .toolName("string")
        .build());
    
    tool_resource = azure_native.discovery.Tool("toolResource",
        resource_group_name="string",
        location="string",
        properties={
            "definition_content": "any",
            "version": "string",
            "environment_variables": {
                "string": "string",
            },
        },
        tags={
            "string": "string",
        },
        tool_name="string")
    
    const toolResource = new azure_native.discovery.Tool("toolResource", {
        resourceGroupName: "string",
        location: "string",
        properties: {
            definitionContent: "any",
            version: "string",
            environmentVariables: {
                string: "string",
            },
        },
        tags: {
            string: "string",
        },
        toolName: "string",
    });
    
    type: azure-native:discovery:Tool
    properties:
        location: string
        properties:
            definitionContent: any
            environmentVariables:
                string: string
            version: string
        resourceGroupName: string
        tags:
            string: string
        toolName: string
    

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

    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    Location string
    The geo-location where the resource lives
    Properties Pulumi.AzureNative.Discovery.Inputs.ToolProperties
    The resource-specific properties for this resource.
    Tags Dictionary<string, string>
    Resource tags.
    ToolName string
    The name of the Tool
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    Location string
    The geo-location where the resource lives
    Properties ToolPropertiesArgs
    The resource-specific properties for this resource.
    Tags map[string]string
    Resource tags.
    ToolName string
    The name of the Tool
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    location String
    The geo-location where the resource lives
    properties ToolProperties
    The resource-specific properties for this resource.
    tags Map<String,String>
    Resource tags.
    toolName String
    The name of the Tool
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    location string
    The geo-location where the resource lives
    properties ToolProperties
    The resource-specific properties for this resource.
    tags {[key: string]: string}
    Resource tags.
    toolName string
    The name of the Tool
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    location str
    The geo-location where the resource lives
    properties ToolPropertiesArgs
    The resource-specific properties for this resource.
    tags Mapping[str, str]
    Resource tags.
    tool_name str
    The name of the Tool
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    location String
    The geo-location where the resource lives
    properties Property Map
    The resource-specific properties for this resource.
    tags Map<String>
    Resource tags.
    toolName String
    The name of the Tool

    Outputs

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

    AzureApiVersion string
    The Azure API version of the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    SystemData Pulumi.AzureNative.Discovery.Outputs.SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    AzureApiVersion string
    The Azure API version of the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    SystemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azureApiVersion String
    The Azure API version of the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azureApiVersion string
    The Azure API version of the resource.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azure_api_version str
    The Azure API version of the resource.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the resource
    system_data SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azureApiVersion String
    The Azure API version of the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    systemData Property Map
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

    Supporting Types

    SystemDataResponse, SystemDataResponseArgs

    Metadata pertaining to creation and last modification of 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.
    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.

    ToolProperties, ToolPropertiesArgs

    Discovery Tool list item properties
    DefinitionContent object
    The JSON content for defining a resource
    Version string
    The version of a resource definition
    EnvironmentVariables Dictionary<string, string>
    Environment variables to make available
    DefinitionContent interface{}
    The JSON content for defining a resource
    Version string
    The version of a resource definition
    EnvironmentVariables map[string]string
    Environment variables to make available
    definitionContent Object
    The JSON content for defining a resource
    version String
    The version of a resource definition
    environmentVariables Map<String,String>
    Environment variables to make available
    definitionContent any
    The JSON content for defining a resource
    version string
    The version of a resource definition
    environmentVariables {[key: string]: string}
    Environment variables to make available
    definition_content Any
    The JSON content for defining a resource
    version str
    The version of a resource definition
    environment_variables Mapping[str, str]
    Environment variables to make available
    definitionContent Any
    The JSON content for defining a resource
    version String
    The version of a resource definition
    environmentVariables Map<String>
    Environment variables to make available

    ToolPropertiesResponse, ToolPropertiesResponseArgs

    Discovery Tool list item properties
    DefinitionContent object
    The JSON content for defining a resource
    ProvisioningState string
    The status of the last operation.
    Version string
    The version of a resource definition
    EnvironmentVariables Dictionary<string, string>
    Environment variables to make available
    DefinitionContent interface{}
    The JSON content for defining a resource
    ProvisioningState string
    The status of the last operation.
    Version string
    The version of a resource definition
    EnvironmentVariables map[string]string
    Environment variables to make available
    definitionContent Object
    The JSON content for defining a resource
    provisioningState String
    The status of the last operation.
    version String
    The version of a resource definition
    environmentVariables Map<String,String>
    Environment variables to make available
    definitionContent any
    The JSON content for defining a resource
    provisioningState string
    The status of the last operation.
    version string
    The version of a resource definition
    environmentVariables {[key: string]: string}
    Environment variables to make available
    definition_content Any
    The JSON content for defining a resource
    provisioning_state str
    The status of the last operation.
    version str
    The version of a resource definition
    environment_variables Mapping[str, str]
    Environment variables to make available
    definitionContent Any
    The JSON content for defining a resource
    provisioningState String
    The status of the last operation.
    version String
    The version of a resource definition
    environmentVariables Map<String>
    Environment variables to make available

    Import

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

    $ pulumi import azure-native:discovery:Tool b5d4239f788c20b58b /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Discovery/tools/{toolName} 
    

    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 v2 docs if using the v2 version of this package.
    Viewing docs for Azure Native v3.16.0
    published on Friday, Mar 20, 2026 by Pulumi
      Try Pulumi Cloud free. Your team will thank you.