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

azure-native.automation.Package

Explore with Pulumi AI

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

    Definition of the Package type. Azure REST API version: 2023-05-15-preview.

    Example Usage

    Create or update a package

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var package = new AzureNative.Automation.Package("package", new()
        {
            AutomationAccountName = "myAutomationAccount33",
            ContentLink = new AzureNative.Automation.Inputs.ContentLinkArgs
            {
                ContentHash = new AzureNative.Automation.Inputs.ContentHashArgs
                {
                    Algorithm = "sha265",
                    Value = "07E108A962B81DD9C9BAA89BB47C0F6EE52B29E83758B07795E408D258B2B87A",
                },
                Uri = "https://teststorage.blob.core.windows.net/dsccomposite/OmsCompositeResources.zip",
            },
            PackageName = "OmsCompositeResources",
            ResourceGroupName = "rg",
            RuntimeEnvironmentName = "runtimeEnvironmentName",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/automation/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := automation.NewPackage(ctx, "package", &automation.PackageArgs{
    			AutomationAccountName: pulumi.String("myAutomationAccount33"),
    			ContentLink: &automation.ContentLinkArgs{
    				ContentHash: &automation.ContentHashArgs{
    					Algorithm: pulumi.String("sha265"),
    					Value:     pulumi.String("07E108A962B81DD9C9BAA89BB47C0F6EE52B29E83758B07795E408D258B2B87A"),
    				},
    				Uri: pulumi.String("https://teststorage.blob.core.windows.net/dsccomposite/OmsCompositeResources.zip"),
    			},
    			PackageName:            pulumi.String("OmsCompositeResources"),
    			ResourceGroupName:      pulumi.String("rg"),
    			RuntimeEnvironmentName: pulumi.String("runtimeEnvironmentName"),
    		})
    		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.automation.Package;
    import com.pulumi.azurenative.automation.PackageArgs;
    import com.pulumi.azurenative.automation.inputs.ContentLinkArgs;
    import com.pulumi.azurenative.automation.inputs.ContentHashArgs;
    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 package_ = new Package("package", PackageArgs.builder()        
                .automationAccountName("myAutomationAccount33")
                .contentLink(ContentLinkArgs.builder()
                    .contentHash(ContentHashArgs.builder()
                        .algorithm("sha265")
                        .value("07E108A962B81DD9C9BAA89BB47C0F6EE52B29E83758B07795E408D258B2B87A")
                        .build())
                    .uri("https://teststorage.blob.core.windows.net/dsccomposite/OmsCompositeResources.zip")
                    .build())
                .packageName("OmsCompositeResources")
                .resourceGroupName("rg")
                .runtimeEnvironmentName("runtimeEnvironmentName")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    package = azure_native.automation.Package("package",
        automation_account_name="myAutomationAccount33",
        content_link=azure_native.automation.ContentLinkArgs(
            content_hash=azure_native.automation.ContentHashArgs(
                algorithm="sha265",
                value="07E108A962B81DD9C9BAA89BB47C0F6EE52B29E83758B07795E408D258B2B87A",
            ),
            uri="https://teststorage.blob.core.windows.net/dsccomposite/OmsCompositeResources.zip",
        ),
        package_name="OmsCompositeResources",
        resource_group_name="rg",
        runtime_environment_name="runtimeEnvironmentName")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const _package = new azure_native.automation.Package("package", {
        automationAccountName: "myAutomationAccount33",
        contentLink: {
            contentHash: {
                algorithm: "sha265",
                value: "07E108A962B81DD9C9BAA89BB47C0F6EE52B29E83758B07795E408D258B2B87A",
            },
            uri: "https://teststorage.blob.core.windows.net/dsccomposite/OmsCompositeResources.zip",
        },
        packageName: "OmsCompositeResources",
        resourceGroupName: "rg",
        runtimeEnvironmentName: "runtimeEnvironmentName",
    });
    
    resources:
      package:
        type: azure-native:automation:Package
        properties:
          automationAccountName: myAutomationAccount33
          contentLink:
            contentHash:
              algorithm: sha265
              value: 07E108A962B81DD9C9BAA89BB47C0F6EE52B29E83758B07795E408D258B2B87A
            uri: https://teststorage.blob.core.windows.net/dsccomposite/OmsCompositeResources.zip
          packageName: OmsCompositeResources
          resourceGroupName: rg
          runtimeEnvironmentName: runtimeEnvironmentName
    

    Create Package Resource

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

    Constructor syntax

    new Package(name: string, args: PackageArgs, opts?: CustomResourceOptions);
    @overload
    def Package(resource_name: str,
                args: PackageArgs,
                opts: Optional[ResourceOptions] = None)
    
    @overload
    def Package(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                automation_account_name: Optional[str] = None,
                content_link: Optional[ContentLinkArgs] = None,
                resource_group_name: Optional[str] = None,
                runtime_environment_name: Optional[str] = None,
                all_of: Optional[TrackedResourceArgs] = None,
                package_name: Optional[str] = None)
    func NewPackage(ctx *Context, name string, args PackageArgs, opts ...ResourceOption) (*Package, error)
    public Package(string name, PackageArgs args, CustomResourceOptions? opts = null)
    public Package(String name, PackageArgs args)
    public Package(String name, PackageArgs args, CustomResourceOptions options)
    
    type: azure-native:automation:Package
    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 PackageArgs
    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 PackageArgs
    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 PackageArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args PackageArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args PackageArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

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

    var packageResource = new AzureNative.Automation.Package("packageResource", new()
    {
        AutomationAccountName = "string",
        ContentLink = new AzureNative.Automation.Inputs.ContentLinkArgs
        {
            ContentHash = new AzureNative.Automation.Inputs.ContentHashArgs
            {
                Algorithm = "string",
                Value = "string",
            },
            Uri = "string",
            Version = "string",
        },
        ResourceGroupName = "string",
        RuntimeEnvironmentName = "string",
        AllOf = new AzureNative.Automation.Inputs.TrackedResourceArgs
        {
            Location = "string",
            Tags = 
            {
                { "string", "string" },
            },
        },
        PackageName = "string",
    });
    
    example, err := automation.NewPackage(ctx, "packageResource", &automation.PackageArgs{
    AutomationAccountName: pulumi.String("string"),
    ContentLink: &automation.ContentLinkArgs{
    ContentHash: &automation.ContentHashArgs{
    Algorithm: pulumi.String("string"),
    Value: pulumi.String("string"),
    },
    Uri: pulumi.String("string"),
    Version: pulumi.String("string"),
    },
    ResourceGroupName: pulumi.String("string"),
    RuntimeEnvironmentName: pulumi.String("string"),
    AllOf: &automation.TrackedResourceArgs{
    Location: pulumi.String("string"),
    Tags: pulumi.StringMap{
    "string": pulumi.String("string"),
    },
    },
    PackageName: pulumi.String("string"),
    })
    
    var packageResource = new Package("packageResource", PackageArgs.builder()        
        .automationAccountName("string")
        .contentLink(ContentLinkArgs.builder()
            .contentHash(ContentHashArgs.builder()
                .algorithm("string")
                .value("string")
                .build())
            .uri("string")
            .version("string")
            .build())
        .resourceGroupName("string")
        .runtimeEnvironmentName("string")
        .allOf(TrackedResourceArgs.builder()
            .location("string")
            .tags(Map.of("string", "string"))
            .build())
        .packageName("string")
        .build());
    
    package_resource = azure_native.automation.Package("packageResource",
        automation_account_name="string",
        content_link=azure_native.automation.ContentLinkArgs(
            content_hash=azure_native.automation.ContentHashArgs(
                algorithm="string",
                value="string",
            ),
            uri="string",
            version="string",
        ),
        resource_group_name="string",
        runtime_environment_name="string",
        all_of=azure_native.automation.TrackedResourceArgs(
            location="string",
            tags={
                "string": "string",
            },
        ),
        package_name="string")
    
    const packageResource = new azure_native.automation.Package("packageResource", {
        automationAccountName: "string",
        contentLink: {
            contentHash: {
                algorithm: "string",
                value: "string",
            },
            uri: "string",
            version: "string",
        },
        resourceGroupName: "string",
        runtimeEnvironmentName: "string",
        allOf: {
            location: "string",
            tags: {
                string: "string",
            },
        },
        packageName: "string",
    });
    
    type: azure-native:automation:Package
    properties:
        allOf:
            location: string
            tags:
                string: string
        automationAccountName: string
        contentLink:
            contentHash:
                algorithm: string
                value: string
            uri: string
            version: string
        packageName: string
        resourceGroupName: string
        runtimeEnvironmentName: string
    

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

    AutomationAccountName string
    The name of the automation account.
    ContentLink Pulumi.AzureNative.Automation.Inputs.ContentLink
    Gets or sets the package content link.
    ResourceGroupName string
    Name of an Azure Resource group.
    RuntimeEnvironmentName string
    The name of the Runtime Environment.
    AllOf Pulumi.AzureNative.Automation.Inputs.TrackedResource
    The resource model definition for an Azure Resource Manager tracked top level resource which has 'tags' and a 'location'
    PackageName string
    The name of Package.
    AutomationAccountName string
    The name of the automation account.
    ContentLink ContentLinkArgs
    Gets or sets the package content link.
    ResourceGroupName string
    Name of an Azure Resource group.
    RuntimeEnvironmentName string
    The name of the Runtime Environment.
    AllOf TrackedResourceArgs
    The resource model definition for an Azure Resource Manager tracked top level resource which has 'tags' and a 'location'
    PackageName string
    The name of Package.
    automationAccountName String
    The name of the automation account.
    contentLink ContentLink
    Gets or sets the package content link.
    resourceGroupName String
    Name of an Azure Resource group.
    runtimeEnvironmentName String
    The name of the Runtime Environment.
    allOf TrackedResource
    The resource model definition for an Azure Resource Manager tracked top level resource which has 'tags' and a 'location'
    packageName String
    The name of Package.
    automationAccountName string
    The name of the automation account.
    contentLink ContentLink
    Gets or sets the package content link.
    resourceGroupName string
    Name of an Azure Resource group.
    runtimeEnvironmentName string
    The name of the Runtime Environment.
    allOf TrackedResource
    The resource model definition for an Azure Resource Manager tracked top level resource which has 'tags' and a 'location'
    packageName string
    The name of Package.
    automation_account_name str
    The name of the automation account.
    content_link ContentLinkArgs
    Gets or sets the package content link.
    resource_group_name str
    Name of an Azure Resource group.
    runtime_environment_name str
    The name of the Runtime Environment.
    all_of TrackedResourceArgs
    The resource model definition for an Azure Resource Manager tracked top level resource which has 'tags' and a 'location'
    package_name str
    The name of Package.
    automationAccountName String
    The name of the automation account.
    contentLink Property Map
    Gets or sets the package content link.
    resourceGroupName String
    Name of an Azure Resource group.
    runtimeEnvironmentName String
    The name of the Runtime Environment.
    allOf Property Map
    The resource model definition for an Azure Resource Manager tracked top level resource which has 'tags' and a 'location'
    packageName String
    The name of Package.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Location string
    The geo-location where the resource lives
    Name string
    The name of the resource
    ProvisioningState string
    Gets or sets the provisioning state of the Package.
    SystemData Pulumi.AzureNative.Automation.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"
    Default bool
    Gets or sets the isGlobal flag of the package.
    Error Pulumi.AzureNative.Automation.Outputs.PackageErrorInfoResponse
    Gets or sets the error info of the Package.
    SizeInBytes double
    Gets or sets the size in bytes of the Package.
    Tags Dictionary<string, string>
    Resource tags.
    Version string
    Gets or sets the version of the Package.
    Id string
    The provider-assigned unique ID for this managed resource.
    Location string
    The geo-location where the resource lives
    Name string
    The name of the resource
    ProvisioningState string
    Gets or sets the provisioning state of the Package.
    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"
    Default bool
    Gets or sets the isGlobal flag of the package.
    Error PackageErrorInfoResponse
    Gets or sets the error info of the Package.
    SizeInBytes float64
    Gets or sets the size in bytes of the Package.
    Tags map[string]string
    Resource tags.
    Version string
    Gets or sets the version of the Package.
    id String
    The provider-assigned unique ID for this managed resource.
    location String
    The geo-location where the resource lives
    name String
    The name of the resource
    provisioningState String
    Gets or sets the provisioning state of the Package.
    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"
    default_ Boolean
    Gets or sets the isGlobal flag of the package.
    error PackageErrorInfoResponse
    Gets or sets the error info of the Package.
    sizeInBytes Double
    Gets or sets the size in bytes of the Package.
    tags Map<String,String>
    Resource tags.
    version String
    Gets or sets the version of the Package.
    id string
    The provider-assigned unique ID for this managed resource.
    location string
    The geo-location where the resource lives
    name string
    The name of the resource
    provisioningState string
    Gets or sets the provisioning state of the Package.
    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"
    default boolean
    Gets or sets the isGlobal flag of the package.
    error PackageErrorInfoResponse
    Gets or sets the error info of the Package.
    sizeInBytes number
    Gets or sets the size in bytes of the Package.
    tags {[key: string]: string}
    Resource tags.
    version string
    Gets or sets the version of the Package.
    id str
    The provider-assigned unique ID for this managed resource.
    location str
    The geo-location where the resource lives
    name str
    The name of the resource
    provisioning_state str
    Gets or sets the provisioning state of the Package.
    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"
    default bool
    Gets or sets the isGlobal flag of the package.
    error PackageErrorInfoResponse
    Gets or sets the error info of the Package.
    size_in_bytes float
    Gets or sets the size in bytes of the Package.
    tags Mapping[str, str]
    Resource tags.
    version str
    Gets or sets the version of the Package.
    id String
    The provider-assigned unique ID for this managed resource.
    location String
    The geo-location where the resource lives
    name String
    The name of the resource
    provisioningState String
    Gets or sets the provisioning state of the Package.
    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"
    default Boolean
    Gets or sets the isGlobal flag of the package.
    error Property Map
    Gets or sets the error info of the Package.
    sizeInBytes Number
    Gets or sets the size in bytes of the Package.
    tags Map<String>
    Resource tags.
    version String
    Gets or sets the version of the Package.

    Supporting Types

    ContentHash, ContentHashArgs

    Algorithm string
    Gets or sets the content hash algorithm used to hash the content.
    Value string
    Gets or sets expected hash value of the content.
    Algorithm string
    Gets or sets the content hash algorithm used to hash the content.
    Value string
    Gets or sets expected hash value of the content.
    algorithm String
    Gets or sets the content hash algorithm used to hash the content.
    value String
    Gets or sets expected hash value of the content.
    algorithm string
    Gets or sets the content hash algorithm used to hash the content.
    value string
    Gets or sets expected hash value of the content.
    algorithm str
    Gets or sets the content hash algorithm used to hash the content.
    value str
    Gets or sets expected hash value of the content.
    algorithm String
    Gets or sets the content hash algorithm used to hash the content.
    value String
    Gets or sets expected hash value of the content.

    ContentHashResponse, ContentHashResponseArgs

    Algorithm string
    Gets or sets the content hash algorithm used to hash the content.
    Value string
    Gets or sets expected hash value of the content.
    Algorithm string
    Gets or sets the content hash algorithm used to hash the content.
    Value string
    Gets or sets expected hash value of the content.
    algorithm String
    Gets or sets the content hash algorithm used to hash the content.
    value String
    Gets or sets expected hash value of the content.
    algorithm string
    Gets or sets the content hash algorithm used to hash the content.
    value string
    Gets or sets expected hash value of the content.
    algorithm str
    Gets or sets the content hash algorithm used to hash the content.
    value str
    Gets or sets expected hash value of the content.
    algorithm String
    Gets or sets the content hash algorithm used to hash the content.
    value String
    Gets or sets expected hash value of the content.
    ContentHash Pulumi.AzureNative.Automation.Inputs.ContentHash
    Gets or sets the hash.
    Uri string
    Gets or sets the uri of the runbook content.
    Version string
    Gets or sets the version of the content.
    ContentHash ContentHash
    Gets or sets the hash.
    Uri string
    Gets or sets the uri of the runbook content.
    Version string
    Gets or sets the version of the content.
    contentHash ContentHash
    Gets or sets the hash.
    uri String
    Gets or sets the uri of the runbook content.
    version String
    Gets or sets the version of the content.
    contentHash ContentHash
    Gets or sets the hash.
    uri string
    Gets or sets the uri of the runbook content.
    version string
    Gets or sets the version of the content.
    content_hash ContentHash
    Gets or sets the hash.
    uri str
    Gets or sets the uri of the runbook content.
    version str
    Gets or sets the version of the content.
    contentHash Property Map
    Gets or sets the hash.
    uri String
    Gets or sets the uri of the runbook content.
    version String
    Gets or sets the version of the content.

    ContentLinkResponse, ContentLinkResponseArgs

    ContentHash Pulumi.AzureNative.Automation.Inputs.ContentHashResponse
    Gets or sets the hash.
    Uri string
    Gets or sets the uri of the runbook content.
    Version string
    Gets or sets the version of the content.
    ContentHash ContentHashResponse
    Gets or sets the hash.
    Uri string
    Gets or sets the uri of the runbook content.
    Version string
    Gets or sets the version of the content.
    contentHash ContentHashResponse
    Gets or sets the hash.
    uri String
    Gets or sets the uri of the runbook content.
    version String
    Gets or sets the version of the content.
    contentHash ContentHashResponse
    Gets or sets the hash.
    uri string
    Gets or sets the uri of the runbook content.
    version string
    Gets or sets the version of the content.
    content_hash ContentHashResponse
    Gets or sets the hash.
    uri str
    Gets or sets the uri of the runbook content.
    version str
    Gets or sets the version of the content.
    contentHash Property Map
    Gets or sets the hash.
    uri String
    Gets or sets the uri of the runbook content.
    version String
    Gets or sets the version of the content.

    PackageErrorInfoResponse, PackageErrorInfoResponseArgs

    Code string
    Package import error code.
    Message string
    Package import error message.
    Code string
    Package import error code.
    Message string
    Package import error message.
    code String
    Package import error code.
    message String
    Package import error message.
    code string
    Package import error code.
    message string
    Package import error message.
    code str
    Package import error code.
    message str
    Package import error message.
    code String
    Package import error code.
    message String
    Package import error message.

    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.

    TrackedResource, TrackedResourceArgs

    Location string
    The geo-location where the resource lives
    Tags Dictionary<string, string>
    Resource tags.
    Location string
    The geo-location where the resource lives
    Tags map[string]string
    Resource tags.
    location String
    The geo-location where the resource lives
    tags Map<String,String>
    Resource tags.
    location string
    The geo-location where the resource lives
    tags {[key: string]: string}
    Resource tags.
    location str
    The geo-location where the resource lives
    tags Mapping[str, str]
    Resource tags.
    location String
    The geo-location where the resource lives
    tags Map<String>
    Resource tags.

    Import

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

    $ pulumi import azure-native:automation:Package OmsCompositeResources /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Automation/automationAccounts/{automationAccountName}/runtimeEnvironments/{runtimeEnvironmentName}/packages/{packageName} 
    

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

    Package Details

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