1. Packages
  2. Azure Native v1
  3. API Docs
  4. devhub
  5. Workflow
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.devhub.Workflow

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

    Resource representation of a workflow API Version: 2022-04-01-preview.

    Example Usage

    Create Workflow

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var workflow = new AzureNative.DevHub.Workflow("workflow", new()
        {
            Acr = new AzureNative.DevHub.Inputs.ACRArgs
            {
                AcrRegistryName = "registry1",
                AcrRepositoryName = "repo1",
                AcrResourceGroup = "resourceGroup1",
                AcrSubscriptionId = "subscriptionId1",
            },
            AksResourceId = "/subscriptions/subscriptionId1/resourcegroups/resourceGroup1/providers/Microsoft.ContainerService/managedClusters/cluster1",
            BranchName = "branch1",
            DeploymentProperties = new AzureNative.DevHub.Inputs.DeploymentPropertiesArgs
            {
                KubeManifestLocations = new[]
                {
                    "/src/manifests/",
                },
                ManifestType = "kube",
                Overrides = 
                {
                    { "key1", "value1" },
                },
            },
            DockerBuildContext = "repo1/src/",
            Dockerfile = "repo1/images/Dockerfile",
            Location = "location1",
            OidcCredentials = new AzureNative.DevHub.Inputs.GitHubWorkflowProfileOidcCredentialsArgs
            {
                AzureClientId = "12345678-3456-7890-5678-012345678901",
                AzureTenantId = "66666666-3456-7890-5678-012345678901",
            },
            RepositoryName = "repo1",
            RepositoryOwner = "owner1",
            ResourceGroupName = "resourceGroup1",
            Tags = 
            {
                { "appname", "testApp" },
            },
            WorkflowName = "workflow1",
        });
    
    });
    
    package main
    
    import (
    	devhub "github.com/pulumi/pulumi-azure-native-sdk/devhub"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := devhub.NewWorkflow(ctx, "workflow", &devhub.WorkflowArgs{
    			Acr: &devhub.ACRArgs{
    				AcrRegistryName:   pulumi.String("registry1"),
    				AcrRepositoryName: pulumi.String("repo1"),
    				AcrResourceGroup:  pulumi.String("resourceGroup1"),
    				AcrSubscriptionId: pulumi.String("subscriptionId1"),
    			},
    			AksResourceId: pulumi.String("/subscriptions/subscriptionId1/resourcegroups/resourceGroup1/providers/Microsoft.ContainerService/managedClusters/cluster1"),
    			BranchName:    pulumi.String("branch1"),
    			DeploymentProperties: &devhub.DeploymentPropertiesArgs{
    				KubeManifestLocations: pulumi.StringArray{
    					pulumi.String("/src/manifests/"),
    				},
    				ManifestType: pulumi.String("kube"),
    				Overrides: pulumi.StringMap{
    					"key1": pulumi.String("value1"),
    				},
    			},
    			DockerBuildContext: pulumi.String("repo1/src/"),
    			Dockerfile:         pulumi.String("repo1/images/Dockerfile"),
    			Location:           pulumi.String("location1"),
    			OidcCredentials: &devhub.GitHubWorkflowProfileOidcCredentialsArgs{
    				AzureClientId: pulumi.String("12345678-3456-7890-5678-012345678901"),
    				AzureTenantId: pulumi.String("66666666-3456-7890-5678-012345678901"),
    			},
    			RepositoryName:    pulumi.String("repo1"),
    			RepositoryOwner:   pulumi.String("owner1"),
    			ResourceGroupName: pulumi.String("resourceGroup1"),
    			Tags: pulumi.StringMap{
    				"appname": pulumi.String("testApp"),
    			},
    			WorkflowName: pulumi.String("workflow1"),
    		})
    		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.devhub.Workflow;
    import com.pulumi.azurenative.devhub.WorkflowArgs;
    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 workflow = new Workflow("workflow", WorkflowArgs.builder()        
                .acr(Map.ofEntries(
                    Map.entry("acrRegistryName", "registry1"),
                    Map.entry("acrRepositoryName", "repo1"),
                    Map.entry("acrResourceGroup", "resourceGroup1"),
                    Map.entry("acrSubscriptionId", "subscriptionId1")
                ))
                .aksResourceId("/subscriptions/subscriptionId1/resourcegroups/resourceGroup1/providers/Microsoft.ContainerService/managedClusters/cluster1")
                .branchName("branch1")
                .deploymentProperties(Map.ofEntries(
                    Map.entry("kubeManifestLocations", "/src/manifests/"),
                    Map.entry("manifestType", "kube"),
                    Map.entry("overrides", Map.of("key1", "value1"))
                ))
                .dockerBuildContext("repo1/src/")
                .dockerfile("repo1/images/Dockerfile")
                .location("location1")
                .oidcCredentials(Map.ofEntries(
                    Map.entry("azureClientId", "12345678-3456-7890-5678-012345678901"),
                    Map.entry("azureTenantId", "66666666-3456-7890-5678-012345678901")
                ))
                .repositoryName("repo1")
                .repositoryOwner("owner1")
                .resourceGroupName("resourceGroup1")
                .tags(Map.of("appname", "testApp"))
                .workflowName("workflow1")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    workflow = azure_native.devhub.Workflow("workflow",
        acr=azure_native.devhub.ACRArgs(
            acr_registry_name="registry1",
            acr_repository_name="repo1",
            acr_resource_group="resourceGroup1",
            acr_subscription_id="subscriptionId1",
        ),
        aks_resource_id="/subscriptions/subscriptionId1/resourcegroups/resourceGroup1/providers/Microsoft.ContainerService/managedClusters/cluster1",
        branch_name="branch1",
        deployment_properties=azure_native.devhub.DeploymentPropertiesArgs(
            kube_manifest_locations=["/src/manifests/"],
            manifest_type="kube",
            overrides={
                "key1": "value1",
            },
        ),
        docker_build_context="repo1/src/",
        dockerfile="repo1/images/Dockerfile",
        location="location1",
        oidc_credentials=azure_native.devhub.GitHubWorkflowProfileOidcCredentialsArgs(
            azure_client_id="12345678-3456-7890-5678-012345678901",
            azure_tenant_id="66666666-3456-7890-5678-012345678901",
        ),
        repository_name="repo1",
        repository_owner="owner1",
        resource_group_name="resourceGroup1",
        tags={
            "appname": "testApp",
        },
        workflow_name="workflow1")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const workflow = new azure_native.devhub.Workflow("workflow", {
        acr: {
            acrRegistryName: "registry1",
            acrRepositoryName: "repo1",
            acrResourceGroup: "resourceGroup1",
            acrSubscriptionId: "subscriptionId1",
        },
        aksResourceId: "/subscriptions/subscriptionId1/resourcegroups/resourceGroup1/providers/Microsoft.ContainerService/managedClusters/cluster1",
        branchName: "branch1",
        deploymentProperties: {
            kubeManifestLocations: ["/src/manifests/"],
            manifestType: "kube",
            overrides: {
                key1: "value1",
            },
        },
        dockerBuildContext: "repo1/src/",
        dockerfile: "repo1/images/Dockerfile",
        location: "location1",
        oidcCredentials: {
            azureClientId: "12345678-3456-7890-5678-012345678901",
            azureTenantId: "66666666-3456-7890-5678-012345678901",
        },
        repositoryName: "repo1",
        repositoryOwner: "owner1",
        resourceGroupName: "resourceGroup1",
        tags: {
            appname: "testApp",
        },
        workflowName: "workflow1",
    });
    
    resources:
      workflow:
        type: azure-native:devhub:Workflow
        properties:
          acr:
            acrRegistryName: registry1
            acrRepositoryName: repo1
            acrResourceGroup: resourceGroup1
            acrSubscriptionId: subscriptionId1
          aksResourceId: /subscriptions/subscriptionId1/resourcegroups/resourceGroup1/providers/Microsoft.ContainerService/managedClusters/cluster1
          branchName: branch1
          deploymentProperties:
            kubeManifestLocations:
              - /src/manifests/
            manifestType: kube
            overrides:
              key1: value1
          dockerBuildContext: repo1/src/
          dockerfile: repo1/images/Dockerfile
          location: location1
          oidcCredentials:
            azureClientId: 12345678-3456-7890-5678-012345678901
            azureTenantId: 66666666-3456-7890-5678-012345678901
          repositoryName: repo1
          repositoryOwner: owner1
          resourceGroupName: resourceGroup1
          tags:
            appname: testApp
          workflowName: workflow1
    

    Create Workflow Resource

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

    Constructor syntax

    new Workflow(name: string, args: WorkflowArgs, opts?: CustomResourceOptions);
    @overload
    def Workflow(resource_name: str,
                 args: WorkflowArgs,
                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def Workflow(resource_name: str,
                 opts: Optional[ResourceOptions] = None,
                 resource_group_name: Optional[str] = None,
                 location: Optional[str] = None,
                 branch_name: Optional[str] = None,
                 deployment_properties: Optional[DeploymentPropertiesArgs] = None,
                 docker_build_context: Optional[str] = None,
                 dockerfile: Optional[str] = None,
                 acr: Optional[ACRArgs] = None,
                 namespace: Optional[str] = None,
                 oidc_credentials: Optional[GitHubWorkflowProfileOidcCredentialsArgs] = None,
                 repository_name: Optional[str] = None,
                 repository_owner: Optional[str] = None,
                 aks_resource_id: Optional[str] = None,
                 tags: Optional[Mapping[str, str]] = None,
                 workflow_name: Optional[str] = None)
    func NewWorkflow(ctx *Context, name string, args WorkflowArgs, opts ...ResourceOption) (*Workflow, error)
    public Workflow(string name, WorkflowArgs args, CustomResourceOptions? opts = null)
    public Workflow(String name, WorkflowArgs args)
    public Workflow(String name, WorkflowArgs args, CustomResourceOptions options)
    
    type: azure-native:devhub:Workflow
    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 WorkflowArgs
    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 WorkflowArgs
    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 WorkflowArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args WorkflowArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args WorkflowArgs
    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 workflowResource = new AzureNative.Devhub.Workflow("workflowResource", new()
    {
        ResourceGroupName = "string",
        Location = "string",
        BranchName = "string",
        DeploymentProperties = 
        {
            { "helmChartPath", "string" },
            { "helmValues", "string" },
            { "kubeManifestLocations", new[]
            {
                "string",
            } },
            { "manifestType", "string" },
            { "overrides", 
            {
                { "string", "string" },
            } },
        },
        DockerBuildContext = "string",
        Dockerfile = "string",
        Acr = 
        {
            { "acrRegistryName", "string" },
            { "acrRepositoryName", "string" },
            { "acrResourceGroup", "string" },
            { "acrSubscriptionId", "string" },
        },
        Namespace = "string",
        OidcCredentials = 
        {
            { "azureClientId", "string" },
            { "azureTenantId", "string" },
        },
        RepositoryName = "string",
        RepositoryOwner = "string",
        AksResourceId = "string",
        Tags = 
        {
            { "string", "string" },
        },
        WorkflowName = "string",
    });
    
    example, err := devhub.NewWorkflow(ctx, "workflowResource", &devhub.WorkflowArgs{
    	ResourceGroupName: "string",
    	Location:          "string",
    	BranchName:        "string",
    	DeploymentProperties: map[string]interface{}{
    		"helmChartPath": "string",
    		"helmValues":    "string",
    		"kubeManifestLocations": []string{
    			"string",
    		},
    		"manifestType": "string",
    		"overrides": map[string]interface{}{
    			"string": "string",
    		},
    	},
    	DockerBuildContext: "string",
    	Dockerfile:         "string",
    	Acr: map[string]interface{}{
    		"acrRegistryName":   "string",
    		"acrRepositoryName": "string",
    		"acrResourceGroup":  "string",
    		"acrSubscriptionId": "string",
    	},
    	Namespace: "string",
    	OidcCredentials: map[string]interface{}{
    		"azureClientId": "string",
    		"azureTenantId": "string",
    	},
    	RepositoryName:  "string",
    	RepositoryOwner: "string",
    	AksResourceId:   "string",
    	Tags: map[string]interface{}{
    		"string": "string",
    	},
    	WorkflowName: "string",
    })
    
    var workflowResource = new Workflow("workflowResource", WorkflowArgs.builder()
        .resourceGroupName("string")
        .location("string")
        .branchName("string")
        .deploymentProperties(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
        .dockerBuildContext("string")
        .dockerfile("string")
        .acr(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
        .namespace("string")
        .oidcCredentials(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
        .repositoryName("string")
        .repositoryOwner("string")
        .aksResourceId("string")
        .tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
        .workflowName("string")
        .build());
    
    workflow_resource = azure_native.devhub.Workflow("workflowResource",
        resource_group_name=string,
        location=string,
        branch_name=string,
        deployment_properties={
            helmChartPath: string,
            helmValues: string,
            kubeManifestLocations: [string],
            manifestType: string,
            overrides: {
                string: string,
            },
        },
        docker_build_context=string,
        dockerfile=string,
        acr={
            acrRegistryName: string,
            acrRepositoryName: string,
            acrResourceGroup: string,
            acrSubscriptionId: string,
        },
        namespace=string,
        oidc_credentials={
            azureClientId: string,
            azureTenantId: string,
        },
        repository_name=string,
        repository_owner=string,
        aks_resource_id=string,
        tags={
            string: string,
        },
        workflow_name=string)
    
    const workflowResource = new azure_native.devhub.Workflow("workflowResource", {
        resourceGroupName: "string",
        location: "string",
        branchName: "string",
        deploymentProperties: {
            helmChartPath: "string",
            helmValues: "string",
            kubeManifestLocations: ["string"],
            manifestType: "string",
            overrides: {
                string: "string",
            },
        },
        dockerBuildContext: "string",
        dockerfile: "string",
        acr: {
            acrRegistryName: "string",
            acrRepositoryName: "string",
            acrResourceGroup: "string",
            acrSubscriptionId: "string",
        },
        namespace: "string",
        oidcCredentials: {
            azureClientId: "string",
            azureTenantId: "string",
        },
        repositoryName: "string",
        repositoryOwner: "string",
        aksResourceId: "string",
        tags: {
            string: "string",
        },
        workflowName: "string",
    });
    
    type: azure-native:devhub:Workflow
    properties:
        acr:
            acrRegistryName: string
            acrRepositoryName: string
            acrResourceGroup: string
            acrSubscriptionId: string
        aksResourceId: string
        branchName: string
        deploymentProperties:
            helmChartPath: string
            helmValues: string
            kubeManifestLocations:
                - string
            manifestType: string
            overrides:
                string: string
        dockerBuildContext: string
        dockerfile: string
        location: string
        namespace: string
        oidcCredentials:
            azureClientId: string
            azureTenantId: string
        repositoryName: string
        repositoryOwner: string
        resourceGroupName: string
        tags:
            string: string
        workflowName: string
    

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

    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    Acr Pulumi.AzureNative.DevHub.Inputs.ACR
    Information on the azure container registry
    AksResourceId string
    The Azure Kubernetes Cluster Resource the application will be deployed to.
    BranchName string
    Repository Branch Name
    DeploymentProperties Pulumi.AzureNative.DevHub.Inputs.DeploymentProperties
    DockerBuildContext string
    Path to Dockerfile Build Context within the repository.
    Dockerfile string
    Path to the Dockerfile within the repository.
    Location string
    The geo-location where the resource lives
    Namespace string
    Kubernetes namespace the application is deployed to.
    OidcCredentials Pulumi.AzureNative.DevHub.Inputs.GitHubWorkflowProfileOidcCredentials
    The fields needed for OIDC with GitHub.
    RepositoryName string
    Repository Name
    RepositoryOwner string
    Repository Owner
    Tags Dictionary<string, string>
    Resource tags.
    WorkflowName string
    The name of the workflow resource.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    Acr ACRArgs
    Information on the azure container registry
    AksResourceId string
    The Azure Kubernetes Cluster Resource the application will be deployed to.
    BranchName string
    Repository Branch Name
    DeploymentProperties DeploymentPropertiesArgs
    DockerBuildContext string
    Path to Dockerfile Build Context within the repository.
    Dockerfile string
    Path to the Dockerfile within the repository.
    Location string
    The geo-location where the resource lives
    Namespace string
    Kubernetes namespace the application is deployed to.
    OidcCredentials GitHubWorkflowProfileOidcCredentialsArgs
    The fields needed for OIDC with GitHub.
    RepositoryName string
    Repository Name
    RepositoryOwner string
    Repository Owner
    Tags map[string]string
    Resource tags.
    WorkflowName string
    The name of the workflow resource.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    acr ACR
    Information on the azure container registry
    aksResourceId String
    The Azure Kubernetes Cluster Resource the application will be deployed to.
    branchName String
    Repository Branch Name
    deploymentProperties DeploymentProperties
    dockerBuildContext String
    Path to Dockerfile Build Context within the repository.
    dockerfile String
    Path to the Dockerfile within the repository.
    location String
    The geo-location where the resource lives
    namespace String
    Kubernetes namespace the application is deployed to.
    oidcCredentials GitHubWorkflowProfileOidcCredentials
    The fields needed for OIDC with GitHub.
    repositoryName String
    Repository Name
    repositoryOwner String
    Repository Owner
    tags Map<String,String>
    Resource tags.
    workflowName String
    The name of the workflow resource.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    acr ACR
    Information on the azure container registry
    aksResourceId string
    The Azure Kubernetes Cluster Resource the application will be deployed to.
    branchName string
    Repository Branch Name
    deploymentProperties DeploymentProperties
    dockerBuildContext string
    Path to Dockerfile Build Context within the repository.
    dockerfile string
    Path to the Dockerfile within the repository.
    location string
    The geo-location where the resource lives
    namespace string
    Kubernetes namespace the application is deployed to.
    oidcCredentials GitHubWorkflowProfileOidcCredentials
    The fields needed for OIDC with GitHub.
    repositoryName string
    Repository Name
    repositoryOwner string
    Repository Owner
    tags {[key: string]: string}
    Resource tags.
    workflowName string
    The name of the workflow resource.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    acr ACRArgs
    Information on the azure container registry
    aks_resource_id str
    The Azure Kubernetes Cluster Resource the application will be deployed to.
    branch_name str
    Repository Branch Name
    deployment_properties DeploymentPropertiesArgs
    docker_build_context str
    Path to Dockerfile Build Context within the repository.
    dockerfile str
    Path to the Dockerfile within the repository.
    location str
    The geo-location where the resource lives
    namespace str
    Kubernetes namespace the application is deployed to.
    oidc_credentials GitHubWorkflowProfileOidcCredentialsArgs
    The fields needed for OIDC with GitHub.
    repository_name str
    Repository Name
    repository_owner str
    Repository Owner
    tags Mapping[str, str]
    Resource tags.
    workflow_name str
    The name of the workflow resource.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    acr Property Map
    Information on the azure container registry
    aksResourceId String
    The Azure Kubernetes Cluster Resource the application will be deployed to.
    branchName String
    Repository Branch Name
    deploymentProperties Property Map
    dockerBuildContext String
    Path to Dockerfile Build Context within the repository.
    dockerfile String
    Path to the Dockerfile within the repository.
    location String
    The geo-location where the resource lives
    namespace String
    Kubernetes namespace the application is deployed to.
    oidcCredentials Property Map
    The fields needed for OIDC with GitHub.
    repositoryName String
    Repository Name
    repositoryOwner String
    Repository Owner
    tags Map<String>
    Resource tags.
    workflowName String
    The name of the workflow resource.

    Outputs

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

    AuthStatus string
    Determines the authorization status of requests.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    PrStatus string
    The status of the Pull Request submitted against the users repository.
    PrURL string
    The URL to the Pull Request submitted against the users repository.
    PullNumber int
    The number associated with the submitted pull request.
    SystemData Pulumi.AzureNative.DevHub.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"
    LastWorkflowRun Pulumi.AzureNative.DevHub.Outputs.WorkflowRunResponse
    AuthStatus string
    Determines the authorization status of requests.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    PrStatus string
    The status of the Pull Request submitted against the users repository.
    PrURL string
    The URL to the Pull Request submitted against the users repository.
    PullNumber int
    The number associated with the submitted pull request.
    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"
    LastWorkflowRun WorkflowRunResponse
    authStatus String
    Determines the authorization status of requests.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    prStatus String
    The status of the Pull Request submitted against the users repository.
    prURL String
    The URL to the Pull Request submitted against the users repository.
    pullNumber Integer
    The number associated with the submitted pull request.
    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"
    lastWorkflowRun WorkflowRunResponse
    authStatus string
    Determines the authorization status of requests.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource
    prStatus string
    The status of the Pull Request submitted against the users repository.
    prURL string
    The URL to the Pull Request submitted against the users repository.
    pullNumber number
    The number associated with the submitted pull request.
    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"
    lastWorkflowRun WorkflowRunResponse
    auth_status str
    Determines the authorization status of requests.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the resource
    pr_status str
    The status of the Pull Request submitted against the users repository.
    pr_url str
    The URL to the Pull Request submitted against the users repository.
    pull_number int
    The number associated with the submitted pull request.
    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"
    last_workflow_run WorkflowRunResponse
    authStatus String
    Determines the authorization status of requests.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    prStatus String
    The status of the Pull Request submitted against the users repository.
    prURL String
    The URL to the Pull Request submitted against the users repository.
    pullNumber Number
    The number associated with the submitted pull request.
    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"
    lastWorkflowRun Property Map

    Supporting Types

    ACR, ACRArgs

    AcrRegistryName string
    ACR registry
    AcrRepositoryName string
    ACR repository
    AcrResourceGroup string
    ACR resource group
    AcrSubscriptionId string
    ACR subscription id
    AcrRegistryName string
    ACR registry
    AcrRepositoryName string
    ACR repository
    AcrResourceGroup string
    ACR resource group
    AcrSubscriptionId string
    ACR subscription id
    acrRegistryName String
    ACR registry
    acrRepositoryName String
    ACR repository
    acrResourceGroup String
    ACR resource group
    acrSubscriptionId String
    ACR subscription id
    acrRegistryName string
    ACR registry
    acrRepositoryName string
    ACR repository
    acrResourceGroup string
    ACR resource group
    acrSubscriptionId string
    ACR subscription id
    acr_registry_name str
    ACR registry
    acr_repository_name str
    ACR repository
    acr_resource_group str
    ACR resource group
    acr_subscription_id str
    ACR subscription id
    acrRegistryName String
    ACR registry
    acrRepositoryName String
    ACR repository
    acrResourceGroup String
    ACR resource group
    acrSubscriptionId String
    ACR subscription id

    ACRResponse, ACRResponseArgs

    AcrRegistryName string
    ACR registry
    AcrRepositoryName string
    ACR repository
    AcrResourceGroup string
    ACR resource group
    AcrSubscriptionId string
    ACR subscription id
    AcrRegistryName string
    ACR registry
    AcrRepositoryName string
    ACR repository
    AcrResourceGroup string
    ACR resource group
    AcrSubscriptionId string
    ACR subscription id
    acrRegistryName String
    ACR registry
    acrRepositoryName String
    ACR repository
    acrResourceGroup String
    ACR resource group
    acrSubscriptionId String
    ACR subscription id
    acrRegistryName string
    ACR registry
    acrRepositoryName string
    ACR repository
    acrResourceGroup string
    ACR resource group
    acrSubscriptionId string
    ACR subscription id
    acr_registry_name str
    ACR registry
    acr_repository_name str
    ACR repository
    acr_resource_group str
    ACR resource group
    acr_subscription_id str
    ACR subscription id
    acrRegistryName String
    ACR registry
    acrRepositoryName String
    ACR repository
    acrResourceGroup String
    ACR resource group
    acrSubscriptionId String
    ACR subscription id

    DeploymentProperties, DeploymentPropertiesArgs

    HelmChartPath string
    Helm chart directory path in repository.
    HelmValues string
    Helm Values.yaml file location in repository.
    KubeManifestLocations List<string>
    ManifestType string | Pulumi.AzureNative.DevHub.ManifestType
    Determines the type of manifests within the repository.
    Overrides Dictionary<string, string>
    Manifest override values.
    HelmChartPath string
    Helm chart directory path in repository.
    HelmValues string
    Helm Values.yaml file location in repository.
    KubeManifestLocations []string
    ManifestType string | ManifestType
    Determines the type of manifests within the repository.
    Overrides map[string]string
    Manifest override values.
    helmChartPath String
    Helm chart directory path in repository.
    helmValues String
    Helm Values.yaml file location in repository.
    kubeManifestLocations List<String>
    manifestType String | ManifestType
    Determines the type of manifests within the repository.
    overrides Map<String,String>
    Manifest override values.
    helmChartPath string
    Helm chart directory path in repository.
    helmValues string
    Helm Values.yaml file location in repository.
    kubeManifestLocations string[]
    manifestType string | ManifestType
    Determines the type of manifests within the repository.
    overrides {[key: string]: string}
    Manifest override values.
    helm_chart_path str
    Helm chart directory path in repository.
    helm_values str
    Helm Values.yaml file location in repository.
    kube_manifest_locations Sequence[str]
    manifest_type str | ManifestType
    Determines the type of manifests within the repository.
    overrides Mapping[str, str]
    Manifest override values.
    helmChartPath String
    Helm chart directory path in repository.
    helmValues String
    Helm Values.yaml file location in repository.
    kubeManifestLocations List<String>
    manifestType String | "helm" | "kube"
    Determines the type of manifests within the repository.
    overrides Map<String>
    Manifest override values.

    DeploymentPropertiesResponse, DeploymentPropertiesResponseArgs

    HelmChartPath string
    Helm chart directory path in repository.
    HelmValues string
    Helm Values.yaml file location in repository.
    KubeManifestLocations List<string>
    ManifestType string
    Determines the type of manifests within the repository.
    Overrides Dictionary<string, string>
    Manifest override values.
    HelmChartPath string
    Helm chart directory path in repository.
    HelmValues string
    Helm Values.yaml file location in repository.
    KubeManifestLocations []string
    ManifestType string
    Determines the type of manifests within the repository.
    Overrides map[string]string
    Manifest override values.
    helmChartPath String
    Helm chart directory path in repository.
    helmValues String
    Helm Values.yaml file location in repository.
    kubeManifestLocations List<String>
    manifestType String
    Determines the type of manifests within the repository.
    overrides Map<String,String>
    Manifest override values.
    helmChartPath string
    Helm chart directory path in repository.
    helmValues string
    Helm Values.yaml file location in repository.
    kubeManifestLocations string[]
    manifestType string
    Determines the type of manifests within the repository.
    overrides {[key: string]: string}
    Manifest override values.
    helm_chart_path str
    Helm chart directory path in repository.
    helm_values str
    Helm Values.yaml file location in repository.
    kube_manifest_locations Sequence[str]
    manifest_type str
    Determines the type of manifests within the repository.
    overrides Mapping[str, str]
    Manifest override values.
    helmChartPath String
    Helm chart directory path in repository.
    helmValues String
    Helm Values.yaml file location in repository.
    kubeManifestLocations List<String>
    manifestType String
    Determines the type of manifests within the repository.
    overrides Map<String>
    Manifest override values.

    GitHubWorkflowProfileOidcCredentials, GitHubWorkflowProfileOidcCredentialsArgs

    AzureClientId string
    Azure Application Client ID
    AzureTenantId string
    Azure Directory (tenant) ID
    AzureClientId string
    Azure Application Client ID
    AzureTenantId string
    Azure Directory (tenant) ID
    azureClientId String
    Azure Application Client ID
    azureTenantId String
    Azure Directory (tenant) ID
    azureClientId string
    Azure Application Client ID
    azureTenantId string
    Azure Directory (tenant) ID
    azure_client_id str
    Azure Application Client ID
    azure_tenant_id str
    Azure Directory (tenant) ID
    azureClientId String
    Azure Application Client ID
    azureTenantId String
    Azure Directory (tenant) ID

    GitHubWorkflowProfileResponseOidcCredentials, GitHubWorkflowProfileResponseOidcCredentialsArgs

    AzureClientId string
    Azure Application Client ID
    AzureTenantId string
    Azure Directory (tenant) ID
    AzureClientId string
    Azure Application Client ID
    AzureTenantId string
    Azure Directory (tenant) ID
    azureClientId String
    Azure Application Client ID
    azureTenantId String
    Azure Directory (tenant) ID
    azureClientId string
    Azure Application Client ID
    azureTenantId string
    Azure Directory (tenant) ID
    azure_client_id str
    Azure Application Client ID
    azure_tenant_id str
    Azure Directory (tenant) ID
    azureClientId String
    Azure Application Client ID
    azureTenantId String
    Azure Directory (tenant) ID

    ManifestType, ManifestTypeArgs

    Helm
    helmRepositories using helm
    Kube
    kubeRepositories using kubernetes manifests
    ManifestTypeHelm
    helmRepositories using helm
    ManifestTypeKube
    kubeRepositories using kubernetes manifests
    Helm
    helmRepositories using helm
    Kube
    kubeRepositories using kubernetes manifests
    Helm
    helmRepositories using helm
    Kube
    kubeRepositories using kubernetes manifests
    HELM
    helmRepositories using helm
    KUBE
    kubeRepositories using kubernetes manifests
    "helm"
    helmRepositories using helm
    "kube"
    kubeRepositories using kubernetes manifests

    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.

    WorkflowRunResponse, WorkflowRunResponseArgs

    LastRunAt string
    The timestamp of the last workflow run.
    Succeeded bool
    Describes if the workflow run succeeded.
    WorkflowRunURL string
    URL to the run of the workflow.
    LastRunAt string
    The timestamp of the last workflow run.
    Succeeded bool
    Describes if the workflow run succeeded.
    WorkflowRunURL string
    URL to the run of the workflow.
    lastRunAt String
    The timestamp of the last workflow run.
    succeeded Boolean
    Describes if the workflow run succeeded.
    workflowRunURL String
    URL to the run of the workflow.
    lastRunAt string
    The timestamp of the last workflow run.
    succeeded boolean
    Describes if the workflow run succeeded.
    workflowRunURL string
    URL to the run of the workflow.
    last_run_at str
    The timestamp of the last workflow run.
    succeeded bool
    Describes if the workflow run succeeded.
    workflow_run_url str
    URL to the run of the workflow.
    lastRunAt String
    The timestamp of the last workflow run.
    succeeded Boolean
    Describes if the workflow run succeeded.
    workflowRunURL String
    URL to the run of the workflow.

    Import

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

    $ pulumi import azure-native:devhub:Workflow workflow1 /subscription/subscriptionId1/resourceGroups/resourceGroup1/providers/Microsoft.DevHub/workflow/workflow1 
    

    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