1. Packages
  2. Artifactory Provider
  3. API Docs
  4. VirtualNugetRepository
artifactory v8.8.1 published on Wednesday, Apr 9, 2025 by Pulumi

artifactory.VirtualNugetRepository

Explore with Pulumi AI

Creates a virtual Nuget repository. Official documentation can be found here.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as artifactory from "@pulumi/artifactory";

const foo_nuget = new artifactory.VirtualNugetRepository("foo-nuget", {
    key: "foo-nuget",
    repositories: [],
    description: "A test virtual repo",
    notes: "Internal description",
    includesPattern: "com/jfrog/**,cloud/jfrog/**",
    excludesPattern: "com/google/**",
    forceNugetAuthentication: true,
});
Copy
import pulumi
import pulumi_artifactory as artifactory

foo_nuget = artifactory.VirtualNugetRepository("foo-nuget",
    key="foo-nuget",
    repositories=[],
    description="A test virtual repo",
    notes="Internal description",
    includes_pattern="com/jfrog/**,cloud/jfrog/**",
    excludes_pattern="com/google/**",
    force_nuget_authentication=True)
Copy
package main

import (
	"github.com/pulumi/pulumi-artifactory/sdk/v8/go/artifactory"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := artifactory.NewVirtualNugetRepository(ctx, "foo-nuget", &artifactory.VirtualNugetRepositoryArgs{
			Key:                      pulumi.String("foo-nuget"),
			Repositories:             pulumi.StringArray{},
			Description:              pulumi.String("A test virtual repo"),
			Notes:                    pulumi.String("Internal description"),
			IncludesPattern:          pulumi.String("com/jfrog/**,cloud/jfrog/**"),
			ExcludesPattern:          pulumi.String("com/google/**"),
			ForceNugetAuthentication: pulumi.Bool(true),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Artifactory = Pulumi.Artifactory;

return await Deployment.RunAsync(() => 
{
    var foo_nuget = new Artifactory.VirtualNugetRepository("foo-nuget", new()
    {
        Key = "foo-nuget",
        Repositories = new[] {},
        Description = "A test virtual repo",
        Notes = "Internal description",
        IncludesPattern = "com/jfrog/**,cloud/jfrog/**",
        ExcludesPattern = "com/google/**",
        ForceNugetAuthentication = true,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.artifactory.VirtualNugetRepository;
import com.pulumi.artifactory.VirtualNugetRepositoryArgs;
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 foo_nuget = new VirtualNugetRepository("foo-nuget", VirtualNugetRepositoryArgs.builder()
            .key("foo-nuget")
            .repositories()
            .description("A test virtual repo")
            .notes("Internal description")
            .includesPattern("com/jfrog/**,cloud/jfrog/**")
            .excludesPattern("com/google/**")
            .forceNugetAuthentication(true)
            .build());

    }
}
Copy
resources:
  foo-nuget:
    type: artifactory:VirtualNugetRepository
    properties:
      key: foo-nuget
      repositories: []
      description: A test virtual repo
      notes: Internal description
      includesPattern: com/jfrog/**,cloud/jfrog/**
      excludesPattern: com/google/**
      forceNugetAuthentication: true
Copy

Create VirtualNugetRepository Resource

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

Constructor syntax

new VirtualNugetRepository(name: string, args: VirtualNugetRepositoryArgs, opts?: CustomResourceOptions);
@overload
def VirtualNugetRepository(resource_name: str,
                           args: VirtualNugetRepositoryArgs,
                           opts: Optional[ResourceOptions] = None)

@overload
def VirtualNugetRepository(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           key: Optional[str] = None,
                           artifactory_requests_can_retrieve_remote_artifacts: Optional[bool] = None,
                           default_deployment_repo: Optional[str] = None,
                           description: Optional[str] = None,
                           excludes_pattern: Optional[str] = None,
                           force_nuget_authentication: Optional[bool] = None,
                           includes_pattern: Optional[str] = None,
                           notes: Optional[str] = None,
                           project_environments: Optional[Sequence[str]] = None,
                           project_key: Optional[str] = None,
                           repo_layout_ref: Optional[str] = None,
                           repositories: Optional[Sequence[str]] = None)
func NewVirtualNugetRepository(ctx *Context, name string, args VirtualNugetRepositoryArgs, opts ...ResourceOption) (*VirtualNugetRepository, error)
public VirtualNugetRepository(string name, VirtualNugetRepositoryArgs args, CustomResourceOptions? opts = null)
public VirtualNugetRepository(String name, VirtualNugetRepositoryArgs args)
public VirtualNugetRepository(String name, VirtualNugetRepositoryArgs args, CustomResourceOptions options)
type: artifactory:VirtualNugetRepository
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. VirtualNugetRepositoryArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. VirtualNugetRepositoryArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. VirtualNugetRepositoryArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. VirtualNugetRepositoryArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. VirtualNugetRepositoryArgs
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 virtualNugetRepositoryResource = new Artifactory.VirtualNugetRepository("virtualNugetRepositoryResource", new()
{
    Key = "string",
    ArtifactoryRequestsCanRetrieveRemoteArtifacts = false,
    DefaultDeploymentRepo = "string",
    Description = "string",
    ExcludesPattern = "string",
    ForceNugetAuthentication = false,
    IncludesPattern = "string",
    Notes = "string",
    ProjectEnvironments = new[]
    {
        "string",
    },
    ProjectKey = "string",
    RepoLayoutRef = "string",
    Repositories = new[]
    {
        "string",
    },
});
Copy
example, err := artifactory.NewVirtualNugetRepository(ctx, "virtualNugetRepositoryResource", &artifactory.VirtualNugetRepositoryArgs{
	Key: pulumi.String("string"),
	ArtifactoryRequestsCanRetrieveRemoteArtifacts: pulumi.Bool(false),
	DefaultDeploymentRepo:                         pulumi.String("string"),
	Description:                                   pulumi.String("string"),
	ExcludesPattern:                               pulumi.String("string"),
	ForceNugetAuthentication:                      pulumi.Bool(false),
	IncludesPattern:                               pulumi.String("string"),
	Notes:                                         pulumi.String("string"),
	ProjectEnvironments: pulumi.StringArray{
		pulumi.String("string"),
	},
	ProjectKey:    pulumi.String("string"),
	RepoLayoutRef: pulumi.String("string"),
	Repositories: pulumi.StringArray{
		pulumi.String("string"),
	},
})
Copy
var virtualNugetRepositoryResource = new VirtualNugetRepository("virtualNugetRepositoryResource", VirtualNugetRepositoryArgs.builder()
    .key("string")
    .artifactoryRequestsCanRetrieveRemoteArtifacts(false)
    .defaultDeploymentRepo("string")
    .description("string")
    .excludesPattern("string")
    .forceNugetAuthentication(false)
    .includesPattern("string")
    .notes("string")
    .projectEnvironments("string")
    .projectKey("string")
    .repoLayoutRef("string")
    .repositories("string")
    .build());
Copy
virtual_nuget_repository_resource = artifactory.VirtualNugetRepository("virtualNugetRepositoryResource",
    key="string",
    artifactory_requests_can_retrieve_remote_artifacts=False,
    default_deployment_repo="string",
    description="string",
    excludes_pattern="string",
    force_nuget_authentication=False,
    includes_pattern="string",
    notes="string",
    project_environments=["string"],
    project_key="string",
    repo_layout_ref="string",
    repositories=["string"])
Copy
const virtualNugetRepositoryResource = new artifactory.VirtualNugetRepository("virtualNugetRepositoryResource", {
    key: "string",
    artifactoryRequestsCanRetrieveRemoteArtifacts: false,
    defaultDeploymentRepo: "string",
    description: "string",
    excludesPattern: "string",
    forceNugetAuthentication: false,
    includesPattern: "string",
    notes: "string",
    projectEnvironments: ["string"],
    projectKey: "string",
    repoLayoutRef: "string",
    repositories: ["string"],
});
Copy
type: artifactory:VirtualNugetRepository
properties:
    artifactoryRequestsCanRetrieveRemoteArtifacts: false
    defaultDeploymentRepo: string
    description: string
    excludesPattern: string
    forceNugetAuthentication: false
    includesPattern: string
    key: string
    notes: string
    projectEnvironments:
        - string
    projectKey: string
    repoLayoutRef: string
    repositories:
        - string
Copy

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

Key
This property is required.
Changes to this property will trigger replacement.
string
A mandatory identifier for the repository that must be unique. It cannot begin with a number or contain spaces or special characters.
ArtifactoryRequestsCanRetrieveRemoteArtifacts bool
Whether the virtual repository should search through remote repositories when trying to resolve an artifact requested by another Artifactory instance.
DefaultDeploymentRepo string
Default repository to deploy artifacts.
Description string
Public description.
ExcludesPattern string
List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**/z/*.By default no artifacts are excluded.
ForceNugetAuthentication bool
If set, user authentication is required when accessing the repository. An anonymous request will display an HTTP 401 error. This is also enforced when aggregated repositories support anonymous requests. Default is false.
IncludesPattern string
List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**/z/*. When used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
Notes string
Internal description.
ProjectEnvironments List<string>
ProjectKey string
Project key for assigning this repository to. Must be 2 - 32 lowercase alphanumeric and hyphen characters. When assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
RepoLayoutRef string
Repository layout key for the virtual repository
Repositories List<string>
The effective list of actual repositories included in this virtual repository.
Key
This property is required.
Changes to this property will trigger replacement.
string
A mandatory identifier for the repository that must be unique. It cannot begin with a number or contain spaces or special characters.
ArtifactoryRequestsCanRetrieveRemoteArtifacts bool
Whether the virtual repository should search through remote repositories when trying to resolve an artifact requested by another Artifactory instance.
DefaultDeploymentRepo string
Default repository to deploy artifacts.
Description string
Public description.
ExcludesPattern string
List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**/z/*.By default no artifacts are excluded.
ForceNugetAuthentication bool
If set, user authentication is required when accessing the repository. An anonymous request will display an HTTP 401 error. This is also enforced when aggregated repositories support anonymous requests. Default is false.
IncludesPattern string
List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**/z/*. When used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
Notes string
Internal description.
ProjectEnvironments []string
ProjectKey string
Project key for assigning this repository to. Must be 2 - 32 lowercase alphanumeric and hyphen characters. When assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
RepoLayoutRef string
Repository layout key for the virtual repository
Repositories []string
The effective list of actual repositories included in this virtual repository.
key
This property is required.
Changes to this property will trigger replacement.
String
A mandatory identifier for the repository that must be unique. It cannot begin with a number or contain spaces or special characters.
artifactoryRequestsCanRetrieveRemoteArtifacts Boolean
Whether the virtual repository should search through remote repositories when trying to resolve an artifact requested by another Artifactory instance.
defaultDeploymentRepo String
Default repository to deploy artifacts.
description String
Public description.
excludesPattern String
List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**/z/*.By default no artifacts are excluded.
forceNugetAuthentication Boolean
If set, user authentication is required when accessing the repository. An anonymous request will display an HTTP 401 error. This is also enforced when aggregated repositories support anonymous requests. Default is false.
includesPattern String
List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**/z/*. When used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
notes String
Internal description.
projectEnvironments List<String>
projectKey String
Project key for assigning this repository to. Must be 2 - 32 lowercase alphanumeric and hyphen characters. When assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
repoLayoutRef String
Repository layout key for the virtual repository
repositories List<String>
The effective list of actual repositories included in this virtual repository.
key
This property is required.
Changes to this property will trigger replacement.
string
A mandatory identifier for the repository that must be unique. It cannot begin with a number or contain spaces or special characters.
artifactoryRequestsCanRetrieveRemoteArtifacts boolean
Whether the virtual repository should search through remote repositories when trying to resolve an artifact requested by another Artifactory instance.
defaultDeploymentRepo string
Default repository to deploy artifacts.
description string
Public description.
excludesPattern string
List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**/z/*.By default no artifacts are excluded.
forceNugetAuthentication boolean
If set, user authentication is required when accessing the repository. An anonymous request will display an HTTP 401 error. This is also enforced when aggregated repositories support anonymous requests. Default is false.
includesPattern string
List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**/z/*. When used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
notes string
Internal description.
projectEnvironments string[]
projectKey string
Project key for assigning this repository to. Must be 2 - 32 lowercase alphanumeric and hyphen characters. When assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
repoLayoutRef string
Repository layout key for the virtual repository
repositories string[]
The effective list of actual repositories included in this virtual repository.
key
This property is required.
Changes to this property will trigger replacement.
str
A mandatory identifier for the repository that must be unique. It cannot begin with a number or contain spaces or special characters.
artifactory_requests_can_retrieve_remote_artifacts bool
Whether the virtual repository should search through remote repositories when trying to resolve an artifact requested by another Artifactory instance.
default_deployment_repo str
Default repository to deploy artifacts.
description str
Public description.
excludes_pattern str
List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**/z/*.By default no artifacts are excluded.
force_nuget_authentication bool
If set, user authentication is required when accessing the repository. An anonymous request will display an HTTP 401 error. This is also enforced when aggregated repositories support anonymous requests. Default is false.
includes_pattern str
List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**/z/*. When used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
notes str
Internal description.
project_environments Sequence[str]
project_key str
Project key for assigning this repository to. Must be 2 - 32 lowercase alphanumeric and hyphen characters. When assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
repo_layout_ref str
Repository layout key for the virtual repository
repositories Sequence[str]
The effective list of actual repositories included in this virtual repository.
key
This property is required.
Changes to this property will trigger replacement.
String
A mandatory identifier for the repository that must be unique. It cannot begin with a number or contain spaces or special characters.
artifactoryRequestsCanRetrieveRemoteArtifacts Boolean
Whether the virtual repository should search through remote repositories when trying to resolve an artifact requested by another Artifactory instance.
defaultDeploymentRepo String
Default repository to deploy artifacts.
description String
Public description.
excludesPattern String
List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**/z/*.By default no artifacts are excluded.
forceNugetAuthentication Boolean
If set, user authentication is required when accessing the repository. An anonymous request will display an HTTP 401 error. This is also enforced when aggregated repositories support anonymous requests. Default is false.
includesPattern String
List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**/z/*. When used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
notes String
Internal description.
projectEnvironments List<String>
projectKey String
Project key for assigning this repository to. Must be 2 - 32 lowercase alphanumeric and hyphen characters. When assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
repoLayoutRef String
Repository layout key for the virtual repository
repositories List<String>
The effective list of actual repositories included in this virtual repository.

Outputs

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

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

Look up Existing VirtualNugetRepository Resource

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

public static get(name: string, id: Input<ID>, state?: VirtualNugetRepositoryState, opts?: CustomResourceOptions): VirtualNugetRepository
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        artifactory_requests_can_retrieve_remote_artifacts: Optional[bool] = None,
        default_deployment_repo: Optional[str] = None,
        description: Optional[str] = None,
        excludes_pattern: Optional[str] = None,
        force_nuget_authentication: Optional[bool] = None,
        includes_pattern: Optional[str] = None,
        key: Optional[str] = None,
        notes: Optional[str] = None,
        package_type: Optional[str] = None,
        project_environments: Optional[Sequence[str]] = None,
        project_key: Optional[str] = None,
        repo_layout_ref: Optional[str] = None,
        repositories: Optional[Sequence[str]] = None) -> VirtualNugetRepository
func GetVirtualNugetRepository(ctx *Context, name string, id IDInput, state *VirtualNugetRepositoryState, opts ...ResourceOption) (*VirtualNugetRepository, error)
public static VirtualNugetRepository Get(string name, Input<string> id, VirtualNugetRepositoryState? state, CustomResourceOptions? opts = null)
public static VirtualNugetRepository get(String name, Output<String> id, VirtualNugetRepositoryState state, CustomResourceOptions options)
resources:  _:    type: artifactory:VirtualNugetRepository    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
ArtifactoryRequestsCanRetrieveRemoteArtifacts bool
Whether the virtual repository should search through remote repositories when trying to resolve an artifact requested by another Artifactory instance.
DefaultDeploymentRepo string
Default repository to deploy artifacts.
Description string
Public description.
ExcludesPattern string
List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**/z/*.By default no artifacts are excluded.
ForceNugetAuthentication bool
If set, user authentication is required when accessing the repository. An anonymous request will display an HTTP 401 error. This is also enforced when aggregated repositories support anonymous requests. Default is false.
IncludesPattern string
List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**/z/*. When used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
Key Changes to this property will trigger replacement. string
A mandatory identifier for the repository that must be unique. It cannot begin with a number or contain spaces or special characters.
Notes string
Internal description.
PackageType Changes to this property will trigger replacement. string
ProjectEnvironments List<string>
ProjectKey string
Project key for assigning this repository to. Must be 2 - 32 lowercase alphanumeric and hyphen characters. When assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
RepoLayoutRef string
Repository layout key for the virtual repository
Repositories List<string>
The effective list of actual repositories included in this virtual repository.
ArtifactoryRequestsCanRetrieveRemoteArtifacts bool
Whether the virtual repository should search through remote repositories when trying to resolve an artifact requested by another Artifactory instance.
DefaultDeploymentRepo string
Default repository to deploy artifacts.
Description string
Public description.
ExcludesPattern string
List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**/z/*.By default no artifacts are excluded.
ForceNugetAuthentication bool
If set, user authentication is required when accessing the repository. An anonymous request will display an HTTP 401 error. This is also enforced when aggregated repositories support anonymous requests. Default is false.
IncludesPattern string
List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**/z/*. When used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
Key Changes to this property will trigger replacement. string
A mandatory identifier for the repository that must be unique. It cannot begin with a number or contain spaces or special characters.
Notes string
Internal description.
PackageType Changes to this property will trigger replacement. string
ProjectEnvironments []string
ProjectKey string
Project key for assigning this repository to. Must be 2 - 32 lowercase alphanumeric and hyphen characters. When assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
RepoLayoutRef string
Repository layout key for the virtual repository
Repositories []string
The effective list of actual repositories included in this virtual repository.
artifactoryRequestsCanRetrieveRemoteArtifacts Boolean
Whether the virtual repository should search through remote repositories when trying to resolve an artifact requested by another Artifactory instance.
defaultDeploymentRepo String
Default repository to deploy artifacts.
description String
Public description.
excludesPattern String
List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**/z/*.By default no artifacts are excluded.
forceNugetAuthentication Boolean
If set, user authentication is required when accessing the repository. An anonymous request will display an HTTP 401 error. This is also enforced when aggregated repositories support anonymous requests. Default is false.
includesPattern String
List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**/z/*. When used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
key Changes to this property will trigger replacement. String
A mandatory identifier for the repository that must be unique. It cannot begin with a number or contain spaces or special characters.
notes String
Internal description.
packageType Changes to this property will trigger replacement. String
projectEnvironments List<String>
projectKey String
Project key for assigning this repository to. Must be 2 - 32 lowercase alphanumeric and hyphen characters. When assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
repoLayoutRef String
Repository layout key for the virtual repository
repositories List<String>
The effective list of actual repositories included in this virtual repository.
artifactoryRequestsCanRetrieveRemoteArtifacts boolean
Whether the virtual repository should search through remote repositories when trying to resolve an artifact requested by another Artifactory instance.
defaultDeploymentRepo string
Default repository to deploy artifacts.
description string
Public description.
excludesPattern string
List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**/z/*.By default no artifacts are excluded.
forceNugetAuthentication boolean
If set, user authentication is required when accessing the repository. An anonymous request will display an HTTP 401 error. This is also enforced when aggregated repositories support anonymous requests. Default is false.
includesPattern string
List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**/z/*. When used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
key Changes to this property will trigger replacement. string
A mandatory identifier for the repository that must be unique. It cannot begin with a number or contain spaces or special characters.
notes string
Internal description.
packageType Changes to this property will trigger replacement. string
projectEnvironments string[]
projectKey string
Project key for assigning this repository to. Must be 2 - 32 lowercase alphanumeric and hyphen characters. When assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
repoLayoutRef string
Repository layout key for the virtual repository
repositories string[]
The effective list of actual repositories included in this virtual repository.
artifactory_requests_can_retrieve_remote_artifacts bool
Whether the virtual repository should search through remote repositories when trying to resolve an artifact requested by another Artifactory instance.
default_deployment_repo str
Default repository to deploy artifacts.
description str
Public description.
excludes_pattern str
List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**/z/*.By default no artifacts are excluded.
force_nuget_authentication bool
If set, user authentication is required when accessing the repository. An anonymous request will display an HTTP 401 error. This is also enforced when aggregated repositories support anonymous requests. Default is false.
includes_pattern str
List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**/z/*. When used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
key Changes to this property will trigger replacement. str
A mandatory identifier for the repository that must be unique. It cannot begin with a number or contain spaces or special characters.
notes str
Internal description.
package_type Changes to this property will trigger replacement. str
project_environments Sequence[str]
project_key str
Project key for assigning this repository to. Must be 2 - 32 lowercase alphanumeric and hyphen characters. When assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
repo_layout_ref str
Repository layout key for the virtual repository
repositories Sequence[str]
The effective list of actual repositories included in this virtual repository.
artifactoryRequestsCanRetrieveRemoteArtifacts Boolean
Whether the virtual repository should search through remote repositories when trying to resolve an artifact requested by another Artifactory instance.
defaultDeploymentRepo String
Default repository to deploy artifacts.
description String
Public description.
excludesPattern String
List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**/z/*.By default no artifacts are excluded.
forceNugetAuthentication Boolean
If set, user authentication is required when accessing the repository. An anonymous request will display an HTTP 401 error. This is also enforced when aggregated repositories support anonymous requests. Default is false.
includesPattern String
List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**/z/*. When used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
key Changes to this property will trigger replacement. String
A mandatory identifier for the repository that must be unique. It cannot begin with a number or contain spaces or special characters.
notes String
Internal description.
packageType Changes to this property will trigger replacement. String
projectEnvironments List<String>
projectKey String
Project key for assigning this repository to. Must be 2 - 32 lowercase alphanumeric and hyphen characters. When assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
repoLayoutRef String
Repository layout key for the virtual repository
repositories List<String>
The effective list of actual repositories included in this virtual repository.

Import

Virtual repositories can be imported using their name, e.g.

$ pulumi import artifactory:index/virtualNugetRepository:VirtualNugetRepository foo-nuget foo-nuget
Copy

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

Package Details

Repository
artifactory pulumi/pulumi-artifactory
License
Apache-2.0
Notes
This Pulumi package is based on the artifactory Terraform Provider.