artifactory.VirtualGradleRepository
Explore with Pulumi AI
Creates a virtual Gradle repository. Official documentation can be found here.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as artifactory from "@pulumi/artifactory";
const foo_gradle = new artifactory.VirtualGradleRepository("foo-gradle", {
key: "foo-gradle",
repositories: [],
description: "A test virtual repo",
notes: "Internal description",
includesPattern: "com/jfrog/**,cloud/jfrog/**",
excludesPattern: "com/google/**",
pomRepositoryReferencesCleanupPolicy: "discard_active_reference",
});
import pulumi
import pulumi_artifactory as artifactory
foo_gradle = artifactory.VirtualGradleRepository("foo-gradle",
key="foo-gradle",
repositories=[],
description="A test virtual repo",
notes="Internal description",
includes_pattern="com/jfrog/**,cloud/jfrog/**",
excludes_pattern="com/google/**",
pom_repository_references_cleanup_policy="discard_active_reference")
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.NewVirtualGradleRepository(ctx, "foo-gradle", &artifactory.VirtualGradleRepositoryArgs{
Key: pulumi.String("foo-gradle"),
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/**"),
PomRepositoryReferencesCleanupPolicy: pulumi.String("discard_active_reference"),
})
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_gradle = new Artifactory.VirtualGradleRepository("foo-gradle", new()
{
Key = "foo-gradle",
Repositories = new[] {},
Description = "A test virtual repo",
Notes = "Internal description",
IncludesPattern = "com/jfrog/**,cloud/jfrog/**",
ExcludesPattern = "com/google/**",
PomRepositoryReferencesCleanupPolicy = "discard_active_reference",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.artifactory.VirtualGradleRepository;
import com.pulumi.artifactory.VirtualGradleRepositoryArgs;
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_gradle = new VirtualGradleRepository("foo-gradle", VirtualGradleRepositoryArgs.builder()
.key("foo-gradle")
.repositories()
.description("A test virtual repo")
.notes("Internal description")
.includesPattern("com/jfrog/**,cloud/jfrog/**")
.excludesPattern("com/google/**")
.pomRepositoryReferencesCleanupPolicy("discard_active_reference")
.build());
}
}
resources:
foo-gradle:
type: artifactory:VirtualGradleRepository
properties:
key: foo-gradle
repositories: []
description: A test virtual repo
notes: Internal description
includesPattern: com/jfrog/**,cloud/jfrog/**
excludesPattern: com/google/**
pomRepositoryReferencesCleanupPolicy: discard_active_reference
Create VirtualGradleRepository Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new VirtualGradleRepository(name: string, args: VirtualGradleRepositoryArgs, opts?: CustomResourceOptions);
@overload
def VirtualGradleRepository(resource_name: str,
args: VirtualGradleRepositoryArgs,
opts: Optional[ResourceOptions] = None)
@overload
def VirtualGradleRepository(resource_name: str,
opts: Optional[ResourceOptions] = None,
key: Optional[str] = None,
excludes_pattern: Optional[str] = None,
description: Optional[str] = None,
artifactory_requests_can_retrieve_remote_artifacts: Optional[bool] = None,
force_maven_authentication: Optional[bool] = None,
includes_pattern: Optional[str] = None,
default_deployment_repo: Optional[str] = None,
key_pair: Optional[str] = None,
notes: Optional[str] = None,
pom_repository_references_cleanup_policy: 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 NewVirtualGradleRepository(ctx *Context, name string, args VirtualGradleRepositoryArgs, opts ...ResourceOption) (*VirtualGradleRepository, error)
public VirtualGradleRepository(string name, VirtualGradleRepositoryArgs args, CustomResourceOptions? opts = null)
public VirtualGradleRepository(String name, VirtualGradleRepositoryArgs args)
public VirtualGradleRepository(String name, VirtualGradleRepositoryArgs args, CustomResourceOptions options)
type: artifactory:VirtualGradleRepository
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 VirtualGradleRepositoryArgs
- 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 VirtualGradleRepositoryArgs
- 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 VirtualGradleRepositoryArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args VirtualGradleRepositoryArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args VirtualGradleRepositoryArgs
- 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 virtualGradleRepositoryResource = new Artifactory.VirtualGradleRepository("virtualGradleRepositoryResource", new()
{
Key = "string",
ExcludesPattern = "string",
Description = "string",
ArtifactoryRequestsCanRetrieveRemoteArtifacts = false,
ForceMavenAuthentication = false,
IncludesPattern = "string",
DefaultDeploymentRepo = "string",
KeyPair = "string",
Notes = "string",
PomRepositoryReferencesCleanupPolicy = "string",
ProjectEnvironments = new[]
{
"string",
},
ProjectKey = "string",
RepoLayoutRef = "string",
Repositories = new[]
{
"string",
},
});
example, err := artifactory.NewVirtualGradleRepository(ctx, "virtualGradleRepositoryResource", &artifactory.VirtualGradleRepositoryArgs{
Key: pulumi.String("string"),
ExcludesPattern: pulumi.String("string"),
Description: pulumi.String("string"),
ArtifactoryRequestsCanRetrieveRemoteArtifacts: pulumi.Bool(false),
ForceMavenAuthentication: pulumi.Bool(false),
IncludesPattern: pulumi.String("string"),
DefaultDeploymentRepo: pulumi.String("string"),
KeyPair: pulumi.String("string"),
Notes: pulumi.String("string"),
PomRepositoryReferencesCleanupPolicy: pulumi.String("string"),
ProjectEnvironments: pulumi.StringArray{
pulumi.String("string"),
},
ProjectKey: pulumi.String("string"),
RepoLayoutRef: pulumi.String("string"),
Repositories: pulumi.StringArray{
pulumi.String("string"),
},
})
var virtualGradleRepositoryResource = new VirtualGradleRepository("virtualGradleRepositoryResource", VirtualGradleRepositoryArgs.builder()
.key("string")
.excludesPattern("string")
.description("string")
.artifactoryRequestsCanRetrieveRemoteArtifacts(false)
.forceMavenAuthentication(false)
.includesPattern("string")
.defaultDeploymentRepo("string")
.keyPair("string")
.notes("string")
.pomRepositoryReferencesCleanupPolicy("string")
.projectEnvironments("string")
.projectKey("string")
.repoLayoutRef("string")
.repositories("string")
.build());
virtual_gradle_repository_resource = artifactory.VirtualGradleRepository("virtualGradleRepositoryResource",
key="string",
excludes_pattern="string",
description="string",
artifactory_requests_can_retrieve_remote_artifacts=False,
force_maven_authentication=False,
includes_pattern="string",
default_deployment_repo="string",
key_pair="string",
notes="string",
pom_repository_references_cleanup_policy="string",
project_environments=["string"],
project_key="string",
repo_layout_ref="string",
repositories=["string"])
const virtualGradleRepositoryResource = new artifactory.VirtualGradleRepository("virtualGradleRepositoryResource", {
key: "string",
excludesPattern: "string",
description: "string",
artifactoryRequestsCanRetrieveRemoteArtifacts: false,
forceMavenAuthentication: false,
includesPattern: "string",
defaultDeploymentRepo: "string",
keyPair: "string",
notes: "string",
pomRepositoryReferencesCleanupPolicy: "string",
projectEnvironments: ["string"],
projectKey: "string",
repoLayoutRef: "string",
repositories: ["string"],
});
type: artifactory:VirtualGradleRepository
properties:
artifactoryRequestsCanRetrieveRemoteArtifacts: false
defaultDeploymentRepo: string
description: string
excludesPattern: string
forceMavenAuthentication: false
includesPattern: string
key: string
keyPair: string
notes: string
pomRepositoryReferencesCleanupPolicy: string
projectEnvironments:
- string
projectKey: string
repoLayoutRef: string
repositories:
- string
VirtualGradleRepository Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The VirtualGradleRepository 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. - Force
Maven boolAuthentication - 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.
- 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
Pair string - The keypair used to sign artifacts.
- Notes string
- Internal description.
- Pom
Repository stringReferences Cleanup Policy - (1: discard_active_reference) Discard Active References - Removes repository elements that are declared directly under project or under a profile in the same POM that is activeByDefault.
- (2: discard_any_reference) Discard Any References - Removes all repository elements regardless of whether they are included in an active profile or not.
- (3: nothing) Nothing - Does not remove any repository elements declared in the POM.
- 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. - Force
Maven boolAuthentication - 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.
- 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
Pair string - The keypair used to sign artifacts.
- Notes string
- Internal description.
- Pom
Repository stringReferences Cleanup Policy - (1: discard_active_reference) Discard Active References - Removes repository elements that are declared directly under project or under a profile in the same POM that is activeByDefault.
- (2: discard_any_reference) Discard Any References - Removes all repository elements regardless of whether they are included in an active profile or not.
- (3: nothing) Nothing - Does not remove any repository elements declared in the POM.
- 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. - force
Maven BooleanAuthentication - 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.
- 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
Pair String - The keypair used to sign artifacts.
- notes String
- Internal description.
- pom
Repository StringReferences Cleanup Policy - (1: discard_active_reference) Discard Active References - Removes repository elements that are declared directly under project or under a profile in the same POM that is activeByDefault.
- (2: discard_any_reference) Discard Any References - Removes all repository elements regardless of whether they are included in an active profile or not.
- (3: nothing) Nothing - Does not remove any repository elements declared in the POM.
- 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. - force
Maven booleanAuthentication - 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.
- 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
Pair string - The keypair used to sign artifacts.
- notes string
- Internal description.
- pom
Repository stringReferences Cleanup Policy - (1: discard_active_reference) Discard Active References - Removes repository elements that are declared directly under project or under a profile in the same POM that is activeByDefault.
- (2: discard_any_reference) Discard Any References - Removes all repository elements regardless of whether they are included in an active profile or not.
- (3: nothing) Nothing - Does not remove any repository elements declared in the POM.
- 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. - force_
maven_ boolauthentication - 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.
- 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_
pair str - The keypair used to sign artifacts.
- notes str
- Internal description.
- pom_
repository_ strreferences_ cleanup_ policy - (1: discard_active_reference) Discard Active References - Removes repository elements that are declared directly under project or under a profile in the same POM that is activeByDefault.
- (2: discard_any_reference) Discard Any References - Removes all repository elements regardless of whether they are included in an active profile or not.
- (3: nothing) Nothing - Does not remove any repository elements declared in the POM.
- 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. - force
Maven BooleanAuthentication - 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.
- 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
Pair String - The keypair used to sign artifacts.
- notes String
- Internal description.
- pom
Repository StringReferences Cleanup Policy - (1: discard_active_reference) Discard Active References - Removes repository elements that are declared directly under project or under a profile in the same POM that is activeByDefault.
- (2: discard_any_reference) Discard Any References - Removes all repository elements regardless of whether they are included in an active profile or not.
- (3: nothing) Nothing - Does not remove any repository elements declared in the POM.
- 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 VirtualGradleRepository 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 VirtualGradleRepository Resource
Get an existing VirtualGradleRepository 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?: VirtualGradleRepositoryState, opts?: CustomResourceOptions): VirtualGradleRepository
@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_maven_authentication: Optional[bool] = None,
includes_pattern: Optional[str] = None,
key: Optional[str] = None,
key_pair: Optional[str] = None,
notes: Optional[str] = None,
package_type: Optional[str] = None,
pom_repository_references_cleanup_policy: 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) -> VirtualGradleRepository
func GetVirtualGradleRepository(ctx *Context, name string, id IDInput, state *VirtualGradleRepositoryState, opts ...ResourceOption) (*VirtualGradleRepository, error)
public static VirtualGradleRepository Get(string name, Input<string> id, VirtualGradleRepositoryState? state, CustomResourceOptions? opts = null)
public static VirtualGradleRepository get(String name, Output<String> id, VirtualGradleRepositoryState 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. - Force
Maven boolAuthentication - 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.
- 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.
- Key
Pair string - The keypair used to sign artifacts.
- Notes string
- Internal description.
- Package
Type string - Pom
Repository stringReferences Cleanup Policy - (1: discard_active_reference) Discard Active References - Removes repository elements that are declared directly under project or under a profile in the same POM that is activeByDefault.
- (2: discard_any_reference) Discard Any References - Removes all repository elements regardless of whether they are included in an active profile or not.
- (3: nothing) Nothing - Does not remove any repository elements declared in the POM.
- 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. - Force
Maven boolAuthentication - 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.
- 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.
- Key
Pair string - The keypair used to sign artifacts.
- Notes string
- Internal description.
- Package
Type string - Pom
Repository stringReferences Cleanup Policy - (1: discard_active_reference) Discard Active References - Removes repository elements that are declared directly under project or under a profile in the same POM that is activeByDefault.
- (2: discard_any_reference) Discard Any References - Removes all repository elements regardless of whether they are included in an active profile or not.
- (3: nothing) Nothing - Does not remove any repository elements declared in the POM.
- 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. - force
Maven BooleanAuthentication - 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.
- 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.
- key
Pair String - The keypair used to sign artifacts.
- notes String
- Internal description.
- package
Type String - pom
Repository StringReferences Cleanup Policy - (1: discard_active_reference) Discard Active References - Removes repository elements that are declared directly under project or under a profile in the same POM that is activeByDefault.
- (2: discard_any_reference) Discard Any References - Removes all repository elements regardless of whether they are included in an active profile or not.
- (3: nothing) Nothing - Does not remove any repository elements declared in the POM.
- 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. - force
Maven booleanAuthentication - 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.
- 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.
- key
Pair string - The keypair used to sign artifacts.
- notes string
- Internal description.
- package
Type string - pom
Repository stringReferences Cleanup Policy - (1: discard_active_reference) Discard Active References - Removes repository elements that are declared directly under project or under a profile in the same POM that is activeByDefault.
- (2: discard_any_reference) Discard Any References - Removes all repository elements regardless of whether they are included in an active profile or not.
- (3: nothing) Nothing - Does not remove any repository elements declared in the POM.
- 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. - force_
maven_ boolauthentication - 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.
- 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.
- key_
pair str - The keypair used to sign artifacts.
- notes str
- Internal description.
- package_
type str - pom_
repository_ strreferences_ cleanup_ policy - (1: discard_active_reference) Discard Active References - Removes repository elements that are declared directly under project or under a profile in the same POM that is activeByDefault.
- (2: discard_any_reference) Discard Any References - Removes all repository elements regardless of whether they are included in an active profile or not.
- (3: nothing) Nothing - Does not remove any repository elements declared in the POM.
- 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. - force
Maven BooleanAuthentication - 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.
- 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.
- key
Pair String - The keypair used to sign artifacts.
- notes String
- Internal description.
- package
Type String - pom
Repository StringReferences Cleanup Policy - (1: discard_active_reference) Discard Active References - Removes repository elements that are declared directly under project or under a profile in the same POM that is activeByDefault.
- (2: discard_any_reference) Discard Any References - Removes all repository elements regardless of whether they are included in an active profile or not.
- (3: nothing) Nothing - Does not remove any repository elements declared in the POM.
- 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/virtualGradleRepository:VirtualGradleRepository foo-gradle foo-gradle
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.