artifactory.VirtualBowerRepository
Explore with Pulumi AI
Creates a virtual Bower repository. Official documentation can be found here.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as artifactory from "@pulumi/artifactory";
const foo_bower = new artifactory.VirtualBowerRepository("foo-bower", {
key: "foo-bower",
repositories: [],
description: "A test virtual repo",
notes: "Internal description",
includesPattern: "com/jfrog/**,cloud/jfrog/**",
excludesPattern: "com/google/**",
externalDependenciesEnabled: false,
});
import pulumi
import pulumi_artifactory as artifactory
foo_bower = artifactory.VirtualBowerRepository("foo-bower",
key="foo-bower",
repositories=[],
description="A test virtual repo",
notes="Internal description",
includes_pattern="com/jfrog/**,cloud/jfrog/**",
excludes_pattern="com/google/**",
external_dependencies_enabled=False)
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.NewVirtualBowerRepository(ctx, "foo-bower", &artifactory.VirtualBowerRepositoryArgs{
Key: pulumi.String("foo-bower"),
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/**"),
ExternalDependenciesEnabled: pulumi.Bool(false),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Artifactory = Pulumi.Artifactory;
return await Deployment.RunAsync(() =>
{
var foo_bower = new Artifactory.VirtualBowerRepository("foo-bower", new()
{
Key = "foo-bower",
Repositories = new[] {},
Description = "A test virtual repo",
Notes = "Internal description",
IncludesPattern = "com/jfrog/**,cloud/jfrog/**",
ExcludesPattern = "com/google/**",
ExternalDependenciesEnabled = false,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.artifactory.VirtualBowerRepository;
import com.pulumi.artifactory.VirtualBowerRepositoryArgs;
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_bower = new VirtualBowerRepository("foo-bower", VirtualBowerRepositoryArgs.builder()
.key("foo-bower")
.repositories()
.description("A test virtual repo")
.notes("Internal description")
.includesPattern("com/jfrog/**,cloud/jfrog/**")
.excludesPattern("com/google/**")
.externalDependenciesEnabled(false)
.build());
}
}
resources:
foo-bower:
type: artifactory:VirtualBowerRepository
properties:
key: foo-bower
repositories: []
description: A test virtual repo
notes: Internal description
includesPattern: com/jfrog/**,cloud/jfrog/**
excludesPattern: com/google/**
externalDependenciesEnabled: false
Create VirtualBowerRepository Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new VirtualBowerRepository(name: string, args: VirtualBowerRepositoryArgs, opts?: CustomResourceOptions);
@overload
def VirtualBowerRepository(resource_name: str,
args: VirtualBowerRepositoryArgs,
opts: Optional[ResourceOptions] = None)
@overload
def VirtualBowerRepository(resource_name: str,
opts: Optional[ResourceOptions] = None,
key: Optional[str] = None,
external_dependencies_remote_repo: Optional[str] = None,
description: Optional[str] = None,
excludes_pattern: Optional[str] = None,
external_dependencies_enabled: Optional[bool] = None,
external_dependencies_patterns: Optional[Sequence[str]] = None,
artifactory_requests_can_retrieve_remote_artifacts: Optional[bool] = None,
includes_pattern: Optional[str] = None,
default_deployment_repo: 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 NewVirtualBowerRepository(ctx *Context, name string, args VirtualBowerRepositoryArgs, opts ...ResourceOption) (*VirtualBowerRepository, error)
public VirtualBowerRepository(string name, VirtualBowerRepositoryArgs args, CustomResourceOptions? opts = null)
public VirtualBowerRepository(String name, VirtualBowerRepositoryArgs args)
public VirtualBowerRepository(String name, VirtualBowerRepositoryArgs args, CustomResourceOptions options)
type: artifactory:VirtualBowerRepository
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 VirtualBowerRepositoryArgs
- 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 VirtualBowerRepositoryArgs
- 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 VirtualBowerRepositoryArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args VirtualBowerRepositoryArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args VirtualBowerRepositoryArgs
- 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 virtualBowerRepositoryResource = new Artifactory.VirtualBowerRepository("virtualBowerRepositoryResource", new()
{
Key = "string",
ExternalDependenciesRemoteRepo = "string",
Description = "string",
ExcludesPattern = "string",
ExternalDependenciesEnabled = false,
ExternalDependenciesPatterns = new[]
{
"string",
},
ArtifactoryRequestsCanRetrieveRemoteArtifacts = false,
IncludesPattern = "string",
DefaultDeploymentRepo = "string",
Notes = "string",
ProjectEnvironments = new[]
{
"string",
},
ProjectKey = "string",
RepoLayoutRef = "string",
Repositories = new[]
{
"string",
},
});
example, err := artifactory.NewVirtualBowerRepository(ctx, "virtualBowerRepositoryResource", &artifactory.VirtualBowerRepositoryArgs{
Key: pulumi.String("string"),
ExternalDependenciesRemoteRepo: pulumi.String("string"),
Description: pulumi.String("string"),
ExcludesPattern: pulumi.String("string"),
ExternalDependenciesEnabled: pulumi.Bool(false),
ExternalDependenciesPatterns: pulumi.StringArray{
pulumi.String("string"),
},
ArtifactoryRequestsCanRetrieveRemoteArtifacts: pulumi.Bool(false),
IncludesPattern: pulumi.String("string"),
DefaultDeploymentRepo: 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"),
},
})
var virtualBowerRepositoryResource = new VirtualBowerRepository("virtualBowerRepositoryResource", VirtualBowerRepositoryArgs.builder()
.key("string")
.externalDependenciesRemoteRepo("string")
.description("string")
.excludesPattern("string")
.externalDependenciesEnabled(false)
.externalDependenciesPatterns("string")
.artifactoryRequestsCanRetrieveRemoteArtifacts(false)
.includesPattern("string")
.defaultDeploymentRepo("string")
.notes("string")
.projectEnvironments("string")
.projectKey("string")
.repoLayoutRef("string")
.repositories("string")
.build());
virtual_bower_repository_resource = artifactory.VirtualBowerRepository("virtualBowerRepositoryResource",
key="string",
external_dependencies_remote_repo="string",
description="string",
excludes_pattern="string",
external_dependencies_enabled=False,
external_dependencies_patterns=["string"],
artifactory_requests_can_retrieve_remote_artifacts=False,
includes_pattern="string",
default_deployment_repo="string",
notes="string",
project_environments=["string"],
project_key="string",
repo_layout_ref="string",
repositories=["string"])
const virtualBowerRepositoryResource = new artifactory.VirtualBowerRepository("virtualBowerRepositoryResource", {
key: "string",
externalDependenciesRemoteRepo: "string",
description: "string",
excludesPattern: "string",
externalDependenciesEnabled: false,
externalDependenciesPatterns: ["string"],
artifactoryRequestsCanRetrieveRemoteArtifacts: false,
includesPattern: "string",
defaultDeploymentRepo: "string",
notes: "string",
projectEnvironments: ["string"],
projectKey: "string",
repoLayoutRef: "string",
repositories: ["string"],
});
type: artifactory:VirtualBowerRepository
properties:
artifactoryRequestsCanRetrieveRemoteArtifacts: false
defaultDeploymentRepo: string
description: string
excludesPattern: string
externalDependenciesEnabled: false
externalDependenciesPatterns:
- string
externalDependenciesRemoteRepo: string
includesPattern: string
key: string
notes: string
projectEnvironments:
- string
projectKey: string
repoLayoutRef: string
repositories:
- string
VirtualBowerRepository 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 VirtualBowerRepository resource accepts the following input properties:
- Key string
- A mandatory identifier for the repository that must be unique. It cannot begin with a number or contain spaces or special characters.
- Artifactory
Requests boolCan Retrieve Remote Artifacts - Whether the virtual repository should search through remote repositories when trying to resolve an artifact requested by another Artifactory instance.
- Default
Deployment stringRepo - Default repository to deploy artifacts.
- Description string
- Public description.
- Excludes
Pattern string - List of artifact patterns to exclude when evaluating artifact requests, in the form of
x/y/**/z/*
.By default no artifacts are excluded. - External
Dependencies boolEnabled - When set, external dependencies are rewritten. Default value is false.
- External
Dependencies List<string>Patterns - An Allow List of Ant-style path expressions that specify where external dependencies may be downloaded from. By default, this is set to ** which means that dependencies may be downloaded from any external source.
- External
Dependencies stringRemote Repo - The remote repository aggregated by this virtual repository in which the external dependency will be cached.
- Includes
Pattern 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.
- Project
Environments List<string> - Project
Key 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.
- Repo
Layout stringRef - Repository layout key for the virtual repository
- Repositories List<string>
- The effective list of actual repositories included in this virtual repository.
- Key string
- A mandatory identifier for the repository that must be unique. It cannot begin with a number or contain spaces or special characters.
- Artifactory
Requests boolCan Retrieve Remote Artifacts - Whether the virtual repository should search through remote repositories when trying to resolve an artifact requested by another Artifactory instance.
- Default
Deployment stringRepo - Default repository to deploy artifacts.
- Description string
- Public description.
- Excludes
Pattern string - List of artifact patterns to exclude when evaluating artifact requests, in the form of
x/y/**/z/*
.By default no artifacts are excluded. - External
Dependencies boolEnabled - When set, external dependencies are rewritten. Default value is false.
- External
Dependencies []stringPatterns - An Allow List of Ant-style path expressions that specify where external dependencies may be downloaded from. By default, this is set to ** which means that dependencies may be downloaded from any external source.
- External
Dependencies stringRemote Repo - The remote repository aggregated by this virtual repository in which the external dependency will be cached.
- Includes
Pattern 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.
- Project
Environments []string - Project
Key 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.
- Repo
Layout stringRef - Repository layout key for the virtual repository
- Repositories []string
- The effective list of actual repositories included in this virtual repository.
- key String
- A mandatory identifier for the repository that must be unique. It cannot begin with a number or contain spaces or special characters.
- artifactory
Requests BooleanCan Retrieve Remote Artifacts - Whether the virtual repository should search through remote repositories when trying to resolve an artifact requested by another Artifactory instance.
- default
Deployment StringRepo - Default repository to deploy artifacts.
- description String
- Public description.
- excludes
Pattern String - List of artifact patterns to exclude when evaluating artifact requests, in the form of
x/y/**/z/*
.By default no artifacts are excluded. - external
Dependencies BooleanEnabled - When set, external dependencies are rewritten. Default value is false.
- external
Dependencies List<String>Patterns - An Allow List of Ant-style path expressions that specify where external dependencies may be downloaded from. By default, this is set to ** which means that dependencies may be downloaded from any external source.
- external
Dependencies StringRemote Repo - The remote repository aggregated by this virtual repository in which the external dependency will be cached.
- includes
Pattern 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.
- project
Environments List<String> - project
Key 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.
- repo
Layout StringRef - Repository layout key for the virtual repository
- repositories List<String>
- The effective list of actual repositories included in this virtual repository.
- key string
- A mandatory identifier for the repository that must be unique. It cannot begin with a number or contain spaces or special characters.
- artifactory
Requests booleanCan Retrieve Remote Artifacts - Whether the virtual repository should search through remote repositories when trying to resolve an artifact requested by another Artifactory instance.
- default
Deployment stringRepo - Default repository to deploy artifacts.
- description string
- Public description.
- excludes
Pattern string - List of artifact patterns to exclude when evaluating artifact requests, in the form of
x/y/**/z/*
.By default no artifacts are excluded. - external
Dependencies booleanEnabled - When set, external dependencies are rewritten. Default value is false.
- external
Dependencies string[]Patterns - An Allow List of Ant-style path expressions that specify where external dependencies may be downloaded from. By default, this is set to ** which means that dependencies may be downloaded from any external source.
- external
Dependencies stringRemote Repo - The remote repository aggregated by this virtual repository in which the external dependency will be cached.
- includes
Pattern 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.
- project
Environments string[] - project
Key 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.
- repo
Layout stringRef - Repository layout key for the virtual repository
- repositories string[]
- The effective list of actual repositories included in this virtual repository.
- key 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_ boolcan_ retrieve_ remote_ artifacts - Whether the virtual repository should search through remote repositories when trying to resolve an artifact requested by another Artifactory instance.
- default_
deployment_ strrepo - 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. - external_
dependencies_ boolenabled - When set, external dependencies are rewritten. Default value is false.
- external_
dependencies_ Sequence[str]patterns - An Allow List of Ant-style path expressions that specify where external dependencies may be downloaded from. By default, this is set to ** which means that dependencies may be downloaded from any external source.
- external_
dependencies_ strremote_ repo - The remote repository aggregated by this virtual repository in which the external dependency will be cached.
- 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_ strref - Repository layout key for the virtual repository
- repositories Sequence[str]
- The effective list of actual repositories included in this virtual repository.
- key String
- A mandatory identifier for the repository that must be unique. It cannot begin with a number or contain spaces or special characters.
- artifactory
Requests BooleanCan Retrieve Remote Artifacts - Whether the virtual repository should search through remote repositories when trying to resolve an artifact requested by another Artifactory instance.
- default
Deployment StringRepo - Default repository to deploy artifacts.
- description String
- Public description.
- excludes
Pattern String - List of artifact patterns to exclude when evaluating artifact requests, in the form of
x/y/**/z/*
.By default no artifacts are excluded. - external
Dependencies BooleanEnabled - When set, external dependencies are rewritten. Default value is false.
- external
Dependencies List<String>Patterns - An Allow List of Ant-style path expressions that specify where external dependencies may be downloaded from. By default, this is set to ** which means that dependencies may be downloaded from any external source.
- external
Dependencies StringRemote Repo - The remote repository aggregated by this virtual repository in which the external dependency will be cached.
- includes
Pattern 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.
- project
Environments List<String> - project
Key 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.
- repo
Layout StringRef - 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 VirtualBowerRepository resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Package
Type string
- Id string
- The provider-assigned unique ID for this managed resource.
- Package
Type string
- id String
- The provider-assigned unique ID for this managed resource.
- package
Type String
- id string
- The provider-assigned unique ID for this managed resource.
- package
Type 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.
- package
Type String
Look up Existing VirtualBowerRepository Resource
Get an existing VirtualBowerRepository 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?: VirtualBowerRepositoryState, opts?: CustomResourceOptions): VirtualBowerRepository
@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,
external_dependencies_enabled: Optional[bool] = None,
external_dependencies_patterns: Optional[Sequence[str]] = None,
external_dependencies_remote_repo: Optional[str] = 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) -> VirtualBowerRepository
func GetVirtualBowerRepository(ctx *Context, name string, id IDInput, state *VirtualBowerRepositoryState, opts ...ResourceOption) (*VirtualBowerRepository, error)
public static VirtualBowerRepository Get(string name, Input<string> id, VirtualBowerRepositoryState? state, CustomResourceOptions? opts = null)
public static VirtualBowerRepository get(String name, Output<String> id, VirtualBowerRepositoryState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- 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
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- 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
- The unique name of the resulting resource.
- id
- 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
- The unique name of the resulting resource.
- id
- 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.
- Artifactory
Requests boolCan Retrieve Remote Artifacts - Whether the virtual repository should search through remote repositories when trying to resolve an artifact requested by another Artifactory instance.
- Default
Deployment stringRepo - Default repository to deploy artifacts.
- Description string
- Public description.
- Excludes
Pattern string - List of artifact patterns to exclude when evaluating artifact requests, in the form of
x/y/**/z/*
.By default no artifacts are excluded. - External
Dependencies boolEnabled - When set, external dependencies are rewritten. Default value is false.
- External
Dependencies List<string>Patterns - An Allow List of Ant-style path expressions that specify where external dependencies may be downloaded from. By default, this is set to ** which means that dependencies may be downloaded from any external source.
- External
Dependencies stringRemote Repo - The remote repository aggregated by this virtual repository in which the external dependency will be cached.
- Includes
Pattern 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 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.
- Package
Type string - Project
Environments List<string> - Project
Key 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.
- Repo
Layout stringRef - Repository layout key for the virtual repository
- Repositories List<string>
- The effective list of actual repositories included in this virtual repository.
- Artifactory
Requests boolCan Retrieve Remote Artifacts - Whether the virtual repository should search through remote repositories when trying to resolve an artifact requested by another Artifactory instance.
- Default
Deployment stringRepo - Default repository to deploy artifacts.
- Description string
- Public description.
- Excludes
Pattern string - List of artifact patterns to exclude when evaluating artifact requests, in the form of
x/y/**/z/*
.By default no artifacts are excluded. - External
Dependencies boolEnabled - When set, external dependencies are rewritten. Default value is false.
- External
Dependencies []stringPatterns - An Allow List of Ant-style path expressions that specify where external dependencies may be downloaded from. By default, this is set to ** which means that dependencies may be downloaded from any external source.
- External
Dependencies stringRemote Repo - The remote repository aggregated by this virtual repository in which the external dependency will be cached.
- Includes
Pattern 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 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.
- Package
Type string - Project
Environments []string - Project
Key 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.
- Repo
Layout stringRef - Repository layout key for the virtual repository
- Repositories []string
- The effective list of actual repositories included in this virtual repository.
- artifactory
Requests BooleanCan Retrieve Remote Artifacts - Whether the virtual repository should search through remote repositories when trying to resolve an artifact requested by another Artifactory instance.
- default
Deployment StringRepo - Default repository to deploy artifacts.
- description String
- Public description.
- excludes
Pattern String - List of artifact patterns to exclude when evaluating artifact requests, in the form of
x/y/**/z/*
.By default no artifacts are excluded. - external
Dependencies BooleanEnabled - When set, external dependencies are rewritten. Default value is false.
- external
Dependencies List<String>Patterns - An Allow List of Ant-style path expressions that specify where external dependencies may be downloaded from. By default, this is set to ** which means that dependencies may be downloaded from any external source.
- external
Dependencies StringRemote Repo - The remote repository aggregated by this virtual repository in which the external dependency will be cached.
- includes
Pattern 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 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.
- package
Type String - project
Environments List<String> - project
Key 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.
- repo
Layout StringRef - Repository layout key for the virtual repository
- repositories List<String>
- The effective list of actual repositories included in this virtual repository.
- artifactory
Requests booleanCan Retrieve Remote Artifacts - Whether the virtual repository should search through remote repositories when trying to resolve an artifact requested by another Artifactory instance.
- default
Deployment stringRepo - Default repository to deploy artifacts.
- description string
- Public description.
- excludes
Pattern string - List of artifact patterns to exclude when evaluating artifact requests, in the form of
x/y/**/z/*
.By default no artifacts are excluded. - external
Dependencies booleanEnabled - When set, external dependencies are rewritten. Default value is false.
- external
Dependencies string[]Patterns - An Allow List of Ant-style path expressions that specify where external dependencies may be downloaded from. By default, this is set to ** which means that dependencies may be downloaded from any external source.
- external
Dependencies stringRemote Repo - The remote repository aggregated by this virtual repository in which the external dependency will be cached.
- includes
Pattern 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 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.
- package
Type string - project
Environments string[] - project
Key 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.
- repo
Layout stringRef - Repository layout key for the virtual repository
- repositories string[]
- The effective list of actual repositories included in this virtual repository.
- artifactory_
requests_ boolcan_ retrieve_ remote_ artifacts - Whether the virtual repository should search through remote repositories when trying to resolve an artifact requested by another Artifactory instance.
- default_
deployment_ strrepo - 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. - external_
dependencies_ boolenabled - When set, external dependencies are rewritten. Default value is false.
- external_
dependencies_ Sequence[str]patterns - An Allow List of Ant-style path expressions that specify where external dependencies may be downloaded from. By default, this is set to ** which means that dependencies may be downloaded from any external source.
- external_
dependencies_ strremote_ repo - The remote repository aggregated by this virtual repository in which the external dependency will be cached.
- 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 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 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_ strref - Repository layout key for the virtual repository
- repositories Sequence[str]
- The effective list of actual repositories included in this virtual repository.
- artifactory
Requests BooleanCan Retrieve Remote Artifacts - Whether the virtual repository should search through remote repositories when trying to resolve an artifact requested by another Artifactory instance.
- default
Deployment StringRepo - Default repository to deploy artifacts.
- description String
- Public description.
- excludes
Pattern String - List of artifact patterns to exclude when evaluating artifact requests, in the form of
x/y/**/z/*
.By default no artifacts are excluded. - external
Dependencies BooleanEnabled - When set, external dependencies are rewritten. Default value is false.
- external
Dependencies List<String>Patterns - An Allow List of Ant-style path expressions that specify where external dependencies may be downloaded from. By default, this is set to ** which means that dependencies may be downloaded from any external source.
- external
Dependencies StringRemote Repo - The remote repository aggregated by this virtual repository in which the external dependency will be cached.
- includes
Pattern 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 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.
- package
Type String - project
Environments List<String> - project
Key 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.
- repo
Layout StringRef - 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/virtualBowerRepository:VirtualBowerRepository foo-bower foo-bower
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.