azure-native.hybridnetwork.ArtifactStore
Explore with Pulumi AI
Artifact store properties. Azure REST API version: 2023-09-01.
Other available API versions: 2024-04-15.
Example Usage
Create or update an artifact store of publisher resource
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var artifactStore = new AzureNative.HybridNetwork.ArtifactStore("artifactStore", new()
    {
        ArtifactStoreName = "TestArtifactStore",
        Location = "eastus",
        Properties = new AzureNative.HybridNetwork.Inputs.ArtifactStorePropertiesFormatArgs
        {
            ManagedResourceGroupConfiguration = new AzureNative.HybridNetwork.Inputs.ArtifactStorePropertiesFormatManagedResourceGroupConfigurationArgs
            {
                Location = "eastus",
                Name = "testRg",
            },
            ReplicationStrategy = AzureNative.HybridNetwork.ArtifactReplicationStrategy.SingleReplication,
            StoreType = AzureNative.HybridNetwork.ArtifactStoreType.AzureContainerRegistry,
        },
        PublisherName = "TestPublisher",
        ResourceGroupName = "rg",
    });
});
package main
import (
	hybridnetwork "github.com/pulumi/pulumi-azure-native-sdk/hybridnetwork/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := hybridnetwork.NewArtifactStore(ctx, "artifactStore", &hybridnetwork.ArtifactStoreArgs{
			ArtifactStoreName: pulumi.String("TestArtifactStore"),
			Location:          pulumi.String("eastus"),
			Properties: &hybridnetwork.ArtifactStorePropertiesFormatArgs{
				ManagedResourceGroupConfiguration: &hybridnetwork.ArtifactStorePropertiesFormatManagedResourceGroupConfigurationArgs{
					Location: pulumi.String("eastus"),
					Name:     pulumi.String("testRg"),
				},
				ReplicationStrategy: pulumi.String(hybridnetwork.ArtifactReplicationStrategySingleReplication),
				StoreType:           pulumi.String(hybridnetwork.ArtifactStoreTypeAzureContainerRegistry),
			},
			PublisherName:     pulumi.String("TestPublisher"),
			ResourceGroupName: pulumi.String("rg"),
		})
		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.hybridnetwork.ArtifactStore;
import com.pulumi.azurenative.hybridnetwork.ArtifactStoreArgs;
import com.pulumi.azurenative.hybridnetwork.inputs.ArtifactStorePropertiesFormatArgs;
import com.pulumi.azurenative.hybridnetwork.inputs.ArtifactStorePropertiesFormatManagedResourceGroupConfigurationArgs;
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 artifactStore = new ArtifactStore("artifactStore", ArtifactStoreArgs.builder()
            .artifactStoreName("TestArtifactStore")
            .location("eastus")
            .properties(ArtifactStorePropertiesFormatArgs.builder()
                .managedResourceGroupConfiguration(ArtifactStorePropertiesFormatManagedResourceGroupConfigurationArgs.builder()
                    .location("eastus")
                    .name("testRg")
                    .build())
                .replicationStrategy("SingleReplication")
                .storeType("AzureContainerRegistry")
                .build())
            .publisherName("TestPublisher")
            .resourceGroupName("rg")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const artifactStore = new azure_native.hybridnetwork.ArtifactStore("artifactStore", {
    artifactStoreName: "TestArtifactStore",
    location: "eastus",
    properties: {
        managedResourceGroupConfiguration: {
            location: "eastus",
            name: "testRg",
        },
        replicationStrategy: azure_native.hybridnetwork.ArtifactReplicationStrategy.SingleReplication,
        storeType: azure_native.hybridnetwork.ArtifactStoreType.AzureContainerRegistry,
    },
    publisherName: "TestPublisher",
    resourceGroupName: "rg",
});
import pulumi
import pulumi_azure_native as azure_native
artifact_store = azure_native.hybridnetwork.ArtifactStore("artifactStore",
    artifact_store_name="TestArtifactStore",
    location="eastus",
    properties={
        "managed_resource_group_configuration": {
            "location": "eastus",
            "name": "testRg",
        },
        "replication_strategy": azure_native.hybridnetwork.ArtifactReplicationStrategy.SINGLE_REPLICATION,
        "store_type": azure_native.hybridnetwork.ArtifactStoreType.AZURE_CONTAINER_REGISTRY,
    },
    publisher_name="TestPublisher",
    resource_group_name="rg")
resources:
  artifactStore:
    type: azure-native:hybridnetwork:ArtifactStore
    properties:
      artifactStoreName: TestArtifactStore
      location: eastus
      properties:
        managedResourceGroupConfiguration:
          location: eastus
          name: testRg
        replicationStrategy: SingleReplication
        storeType: AzureContainerRegistry
      publisherName: TestPublisher
      resourceGroupName: rg
Create ArtifactStore Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ArtifactStore(name: string, args: ArtifactStoreArgs, opts?: CustomResourceOptions);@overload
def ArtifactStore(resource_name: str,
                  args: ArtifactStoreArgs,
                  opts: Optional[ResourceOptions] = None)
@overload
def ArtifactStore(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  publisher_name: Optional[str] = None,
                  resource_group_name: Optional[str] = None,
                  artifact_store_name: Optional[str] = None,
                  location: Optional[str] = None,
                  properties: Optional[ArtifactStorePropertiesFormatArgs] = None,
                  tags: Optional[Mapping[str, str]] = None)func NewArtifactStore(ctx *Context, name string, args ArtifactStoreArgs, opts ...ResourceOption) (*ArtifactStore, error)public ArtifactStore(string name, ArtifactStoreArgs args, CustomResourceOptions? opts = null)
public ArtifactStore(String name, ArtifactStoreArgs args)
public ArtifactStore(String name, ArtifactStoreArgs args, CustomResourceOptions options)
type: azure-native:hybridnetwork:ArtifactStore
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 ArtifactStoreArgs
- 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 ArtifactStoreArgs
- 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 ArtifactStoreArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ArtifactStoreArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ArtifactStoreArgs
- 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 artifactStoreResource = new AzureNative.HybridNetwork.ArtifactStore("artifactStoreResource", new()
{
    PublisherName = "string",
    ResourceGroupName = "string",
    ArtifactStoreName = "string",
    Location = "string",
    Properties = new AzureNative.HybridNetwork.Inputs.ArtifactStorePropertiesFormatArgs
    {
        ManagedResourceGroupConfiguration = new AzureNative.HybridNetwork.Inputs.ArtifactStorePropertiesFormatManagedResourceGroupConfigurationArgs
        {
            Location = "string",
            Name = "string",
        },
        ReplicationStrategy = "string",
        StoreType = "string",
    },
    Tags = 
    {
        { "string", "string" },
    },
});
example, err := hybridnetwork.NewArtifactStore(ctx, "artifactStoreResource", &hybridnetwork.ArtifactStoreArgs{
	PublisherName:     pulumi.String("string"),
	ResourceGroupName: pulumi.String("string"),
	ArtifactStoreName: pulumi.String("string"),
	Location:          pulumi.String("string"),
	Properties: &hybridnetwork.ArtifactStorePropertiesFormatArgs{
		ManagedResourceGroupConfiguration: &hybridnetwork.ArtifactStorePropertiesFormatManagedResourceGroupConfigurationArgs{
			Location: pulumi.String("string"),
			Name:     pulumi.String("string"),
		},
		ReplicationStrategy: pulumi.String("string"),
		StoreType:           pulumi.String("string"),
	},
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
var artifactStoreResource = new ArtifactStore("artifactStoreResource", ArtifactStoreArgs.builder()
    .publisherName("string")
    .resourceGroupName("string")
    .artifactStoreName("string")
    .location("string")
    .properties(ArtifactStorePropertiesFormatArgs.builder()
        .managedResourceGroupConfiguration(ArtifactStorePropertiesFormatManagedResourceGroupConfigurationArgs.builder()
            .location("string")
            .name("string")
            .build())
        .replicationStrategy("string")
        .storeType("string")
        .build())
    .tags(Map.of("string", "string"))
    .build());
artifact_store_resource = azure_native.hybridnetwork.ArtifactStore("artifactStoreResource",
    publisher_name="string",
    resource_group_name="string",
    artifact_store_name="string",
    location="string",
    properties={
        "managed_resource_group_configuration": {
            "location": "string",
            "name": "string",
        },
        "replication_strategy": "string",
        "store_type": "string",
    },
    tags={
        "string": "string",
    })
const artifactStoreResource = new azure_native.hybridnetwork.ArtifactStore("artifactStoreResource", {
    publisherName: "string",
    resourceGroupName: "string",
    artifactStoreName: "string",
    location: "string",
    properties: {
        managedResourceGroupConfiguration: {
            location: "string",
            name: "string",
        },
        replicationStrategy: "string",
        storeType: "string",
    },
    tags: {
        string: "string",
    },
});
type: azure-native:hybridnetwork:ArtifactStore
properties:
    artifactStoreName: string
    location: string
    properties:
        managedResourceGroupConfiguration:
            location: string
            name: string
        replicationStrategy: string
        storeType: string
    publisherName: string
    resourceGroupName: string
    tags:
        string: string
ArtifactStore 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 ArtifactStore resource accepts the following input properties:
- PublisherName string
- The name of the publisher.
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- ArtifactStore stringName 
- The name of the artifact store.
- Location string
- The geo-location where the resource lives
- Properties
Pulumi.Azure Native. Hybrid Network. Inputs. Artifact Store Properties Format 
- ArtifactStores properties.
- Dictionary<string, string>
- Resource tags.
- PublisherName string
- The name of the publisher.
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- ArtifactStore stringName 
- The name of the artifact store.
- Location string
- The geo-location where the resource lives
- Properties
ArtifactStore Properties Format Args 
- ArtifactStores properties.
- map[string]string
- Resource tags.
- publisherName String
- The name of the publisher.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- artifactStore StringName 
- The name of the artifact store.
- location String
- The geo-location where the resource lives
- properties
ArtifactStore Properties Format 
- ArtifactStores properties.
- Map<String,String>
- Resource tags.
- publisherName string
- The name of the publisher.
- resourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- artifactStore stringName 
- The name of the artifact store.
- location string
- The geo-location where the resource lives
- properties
ArtifactStore Properties Format 
- ArtifactStores properties.
- {[key: string]: string}
- Resource tags.
- publisher_name str
- The name of the publisher.
- resource_group_ strname 
- The name of the resource group. The name is case insensitive.
- artifact_store_ strname 
- The name of the artifact store.
- location str
- The geo-location where the resource lives
- properties
ArtifactStore Properties Format Args 
- ArtifactStores properties.
- Mapping[str, str]
- Resource tags.
- publisherName String
- The name of the publisher.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- artifactStore StringName 
- The name of the artifact store.
- location String
- The geo-location where the resource lives
- properties Property Map
- ArtifactStores properties.
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the ArtifactStore resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- SystemData Pulumi.Azure Native. Hybrid Network. Outputs. System Data Response 
- 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"
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- SystemData SystemData Response 
- 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"
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- systemData SystemData Response 
- 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"
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- systemData SystemData Response 
- 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"
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource
- system_data SystemData Response 
- 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"
- 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
ArtifactReplicationStrategy, ArtifactReplicationStrategyArgs      
- Unknown
- Unknown
- SingleReplication 
- SingleReplication
- ArtifactReplication Strategy Unknown 
- Unknown
- ArtifactReplication Strategy Single Replication 
- SingleReplication
- Unknown
- Unknown
- SingleReplication 
- SingleReplication
- Unknown
- Unknown
- SingleReplication 
- SingleReplication
- UNKNOWN
- Unknown
- SINGLE_REPLICATION
- SingleReplication
- "Unknown"
- Unknown
- "SingleReplication" 
- SingleReplication
ArtifactStorePropertiesFormat, ArtifactStorePropertiesFormatArgs        
- ManagedResource Pulumi.Group Configuration Azure Native. Hybrid Network. Inputs. Artifact Store Properties Format Managed Resource Group Configuration 
- ReplicationStrategy string | Pulumi.Azure Native. Hybrid Network. Artifact Replication Strategy 
- The replication strategy.
- StoreType string | Pulumi.Azure Native. Hybrid Network. Artifact Store Type 
- The artifact store type.
- ManagedResource ArtifactGroup Configuration Store Properties Format Managed Resource Group Configuration 
- ReplicationStrategy string | ArtifactReplication Strategy 
- The replication strategy.
- StoreType string | ArtifactStore Type 
- The artifact store type.
- managedResource ArtifactGroup Configuration Store Properties Format Managed Resource Group Configuration 
- replicationStrategy String | ArtifactReplication Strategy 
- The replication strategy.
- storeType String | ArtifactStore Type 
- The artifact store type.
- managedResource ArtifactGroup Configuration Store Properties Format Managed Resource Group Configuration 
- replicationStrategy string | ArtifactReplication Strategy 
- The replication strategy.
- storeType string | ArtifactStore Type 
- The artifact store type.
- managed_resource_ Artifactgroup_ configuration Store Properties Format Managed Resource Group Configuration 
- replication_strategy str | ArtifactReplication Strategy 
- The replication strategy.
- store_type str | ArtifactStore Type 
- The artifact store type.
- managedResource Property MapGroup Configuration 
- replicationStrategy String | "Unknown" | "SingleReplication" 
- The replication strategy.
- storeType String | "Unknown" | "AzureContainer Registry" | "Azure Storage Account" 
- The artifact store type.
ArtifactStorePropertiesFormatManagedResourceGroupConfiguration, ArtifactStorePropertiesFormatManagedResourceGroupConfigurationArgs                
ArtifactStorePropertiesFormatResponse, ArtifactStorePropertiesFormatResponseArgs          
- ProvisioningState string
- The provisioning state of the application groups resource.
- StorageResource stringId 
- The created storage resource id
- ManagedResource Pulumi.Group Configuration Azure Native. Hybrid Network. Inputs. Artifact Store Properties Format Response Managed Resource Group Configuration 
- ReplicationStrategy string
- The replication strategy.
- StoreType string
- The artifact store type.
- ProvisioningState string
- The provisioning state of the application groups resource.
- StorageResource stringId 
- The created storage resource id
- ManagedResource ArtifactGroup Configuration Store Properties Format Response Managed Resource Group Configuration 
- ReplicationStrategy string
- The replication strategy.
- StoreType string
- The artifact store type.
- provisioningState String
- The provisioning state of the application groups resource.
- storageResource StringId 
- The created storage resource id
- managedResource ArtifactGroup Configuration Store Properties Format Response Managed Resource Group Configuration 
- replicationStrategy String
- The replication strategy.
- storeType String
- The artifact store type.
- provisioningState string
- The provisioning state of the application groups resource.
- storageResource stringId 
- The created storage resource id
- managedResource ArtifactGroup Configuration Store Properties Format Response Managed Resource Group Configuration 
- replicationStrategy string
- The replication strategy.
- storeType string
- The artifact store type.
- provisioning_state str
- The provisioning state of the application groups resource.
- storage_resource_ strid 
- The created storage resource id
- managed_resource_ Artifactgroup_ configuration Store Properties Format Response Managed Resource Group Configuration 
- replication_strategy str
- The replication strategy.
- store_type str
- The artifact store type.
- provisioningState String
- The provisioning state of the application groups resource.
- storageResource StringId 
- The created storage resource id
- managedResource Property MapGroup Configuration 
- replicationStrategy String
- The replication strategy.
- storeType String
- The artifact store type.
ArtifactStorePropertiesFormatResponseManagedResourceGroupConfiguration, ArtifactStorePropertiesFormatResponseManagedResourceGroupConfigurationArgs                  
ArtifactStoreType, ArtifactStoreTypeArgs      
- Unknown
- Unknown
- AzureContainer Registry 
- AzureContainerRegistry
- AzureStorage Account 
- AzureStorageAccount
- ArtifactStore Type Unknown 
- Unknown
- ArtifactStore Type Azure Container Registry 
- AzureContainerRegistry
- ArtifactStore Type Azure Storage Account 
- AzureStorageAccount
- Unknown
- Unknown
- AzureContainer Registry 
- AzureContainerRegistry
- AzureStorage Account 
- AzureStorageAccount
- Unknown
- Unknown
- AzureContainer Registry 
- AzureContainerRegistry
- AzureStorage Account 
- AzureStorageAccount
- UNKNOWN
- Unknown
- AZURE_CONTAINER_REGISTRY
- AzureContainerRegistry
- AZURE_STORAGE_ACCOUNT
- AzureStorageAccount
- "Unknown"
- Unknown
- "AzureContainer Registry" 
- AzureContainerRegistry
- "AzureStorage Account" 
- AzureStorageAccount
SystemDataResponse, SystemDataResponseArgs      
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- 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.
- createdBy stringType 
- The type of identity that created the resource.
- lastModified stringAt 
- The timestamp of resource last modification (UTC)
- lastModified stringBy 
- The identity that last modified the resource.
- lastModified stringBy Type 
- 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_ strtype 
- The type of identity that created the resource.
- last_modified_ strat 
- The timestamp of resource last modification (UTC)
- last_modified_ strby 
- The identity that last modified the resource.
- last_modified_ strby_ type 
- 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.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- The type of identity that last modified the resource.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:hybridnetwork:ArtifactStore TestArtifactStore /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HybridNetwork/publishers/{publisherName}/artifactStores/{artifactStoreName} 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0