artifactory v6.8.4 published on Thursday, Jun 6, 2024 by Pulumi
artifactory.getVirtualGradleRepository
Explore with Pulumi AI
Retrieves a virtual Gradle repository.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as artifactory from "@pulumi/artifactory";
const virtual-gradle = artifactory.getVirtualGradleRepository({
key: "virtual-gradle",
});
import pulumi
import pulumi_artifactory as artifactory
virtual_gradle = artifactory.get_virtual_gradle_repository(key="virtual-gradle")
package main
import (
"github.com/pulumi/pulumi-artifactory/sdk/v6/go/artifactory"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := artifactory.LookupVirtualGradleRepository(ctx, &artifactory.LookupVirtualGradleRepositoryArgs{
Key: "virtual-gradle",
}, nil)
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 virtual_gradle = Artifactory.GetVirtualGradleRepository.Invoke(new()
{
Key = "virtual-gradle",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.artifactory.ArtifactoryFunctions;
import com.pulumi.artifactory.inputs.GetVirtualGradleRepositoryArgs;
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) {
final var virtual-gradle = ArtifactoryFunctions.getVirtualGradleRepository(GetVirtualGradleRepositoryArgs.builder()
.key("virtual-gradle")
.build());
}
}
variables:
virtual-gradle:
fn::invoke:
Function: artifactory:getVirtualGradleRepository
Arguments:
key: virtual-gradle
Using getVirtualGradleRepository
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getVirtualGradleRepository(args: GetVirtualGradleRepositoryArgs, opts?: InvokeOptions): Promise<GetVirtualGradleRepositoryResult>
function getVirtualGradleRepositoryOutput(args: GetVirtualGradleRepositoryOutputArgs, opts?: InvokeOptions): Output<GetVirtualGradleRepositoryResult>
def get_virtual_gradle_repository(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,
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,
opts: Optional[InvokeOptions] = None) -> GetVirtualGradleRepositoryResult
def get_virtual_gradle_repository_output(artifactory_requests_can_retrieve_remote_artifacts: Optional[pulumi.Input[bool]] = None,
default_deployment_repo: Optional[pulumi.Input[str]] = None,
description: Optional[pulumi.Input[str]] = None,
excludes_pattern: Optional[pulumi.Input[str]] = None,
force_maven_authentication: Optional[pulumi.Input[bool]] = None,
includes_pattern: Optional[pulumi.Input[str]] = None,
key: Optional[pulumi.Input[str]] = None,
key_pair: Optional[pulumi.Input[str]] = None,
notes: Optional[pulumi.Input[str]] = None,
pom_repository_references_cleanup_policy: Optional[pulumi.Input[str]] = None,
project_environments: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
project_key: Optional[pulumi.Input[str]] = None,
repo_layout_ref: Optional[pulumi.Input[str]] = None,
repositories: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetVirtualGradleRepositoryResult]
func LookupVirtualGradleRepository(ctx *Context, args *LookupVirtualGradleRepositoryArgs, opts ...InvokeOption) (*LookupVirtualGradleRepositoryResult, error)
func LookupVirtualGradleRepositoryOutput(ctx *Context, args *LookupVirtualGradleRepositoryOutputArgs, opts ...InvokeOption) LookupVirtualGradleRepositoryResultOutput
> Note: This function is named LookupVirtualGradleRepository
in the Go SDK.
public static class GetVirtualGradleRepository
{
public static Task<GetVirtualGradleRepositoryResult> InvokeAsync(GetVirtualGradleRepositoryArgs args, InvokeOptions? opts = null)
public static Output<GetVirtualGradleRepositoryResult> Invoke(GetVirtualGradleRepositoryInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetVirtualGradleRepositoryResult> getVirtualGradleRepository(GetVirtualGradleRepositoryArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: artifactory:index/getVirtualGradleRepository:getVirtualGradleRepository
arguments:
# arguments dictionary
The following arguments are supported:
- Key string
- the identity key of the repo.
- Artifactory
Requests boolCan Retrieve Remote Artifacts - Default
Deployment stringRepo - Description string
- Excludes
Pattern string - Force
Maven boolAuthentication - Includes
Pattern string - Key
Pair string - (Optional) The keypair used to sign artifacts.
- Notes string
- Pom
Repository stringReferences Cleanup Policy - (Optional)
- (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 - Repo
Layout stringRef - Repositories List<string>
- Key string
- the identity key of the repo.
- Artifactory
Requests boolCan Retrieve Remote Artifacts - Default
Deployment stringRepo - Description string
- Excludes
Pattern string - Force
Maven boolAuthentication - Includes
Pattern string - Key
Pair string - (Optional) The keypair used to sign artifacts.
- Notes string
- Pom
Repository stringReferences Cleanup Policy - (Optional)
- (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 - Repo
Layout stringRef - Repositories []string
- key String
- the identity key of the repo.
- artifactory
Requests BooleanCan Retrieve Remote Artifacts - default
Deployment StringRepo - description String
- excludes
Pattern String - force
Maven BooleanAuthentication - includes
Pattern String - key
Pair String - (Optional) The keypair used to sign artifacts.
- notes String
- pom
Repository StringReferences Cleanup Policy - (Optional)
- (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 - repo
Layout StringRef - repositories List<String>
- key string
- the identity key of the repo.
- artifactory
Requests booleanCan Retrieve Remote Artifacts - default
Deployment stringRepo - description string
- excludes
Pattern string - force
Maven booleanAuthentication - includes
Pattern string - key
Pair string - (Optional) The keypair used to sign artifacts.
- notes string
- pom
Repository stringReferences Cleanup Policy - (Optional)
- (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 - repo
Layout stringRef - repositories string[]
- key str
- the identity key of the repo.
- artifactory_
requests_ boolcan_ retrieve_ remote_ artifacts - default_
deployment_ strrepo - description str
- excludes_
pattern str - force_
maven_ boolauthentication - includes_
pattern str - key_
pair str - (Optional) The keypair used to sign artifacts.
- notes str
- pom_
repository_ strreferences_ cleanup_ policy - (Optional)
- (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 - repo_
layout_ strref - repositories Sequence[str]
- key String
- the identity key of the repo.
- artifactory
Requests BooleanCan Retrieve Remote Artifacts - default
Deployment StringRepo - description String
- excludes
Pattern String - force
Maven BooleanAuthentication - includes
Pattern String - key
Pair String - (Optional) The keypair used to sign artifacts.
- notes String
- pom
Repository StringReferences Cleanup Policy - (Optional)
- (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 - repo
Layout StringRef - repositories List<String>
getVirtualGradleRepository Result
The following output properties are available:
- Force
Maven boolAuthentication - Id string
- The provider-assigned unique ID for this managed resource.
- Key string
- Package
Type string - Pom
Repository stringReferences Cleanup Policy - (Optional)
- (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> - Artifactory
Requests boolCan Retrieve Remote Artifacts - Default
Deployment stringRepo - Description string
- Excludes
Pattern string - Includes
Pattern string - Key
Pair string - (Optional) The keypair used to sign artifacts.
- Notes string
- Project
Key string - Repo
Layout stringRef - Repositories List<string>
- Force
Maven boolAuthentication - Id string
- The provider-assigned unique ID for this managed resource.
- Key string
- Package
Type string - Pom
Repository stringReferences Cleanup Policy - (Optional)
- (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 - Artifactory
Requests boolCan Retrieve Remote Artifacts - Default
Deployment stringRepo - Description string
- Excludes
Pattern string - Includes
Pattern string - Key
Pair string - (Optional) The keypair used to sign artifacts.
- Notes string
- Project
Key string - Repo
Layout stringRef - Repositories []string
- force
Maven BooleanAuthentication - id String
- The provider-assigned unique ID for this managed resource.
- key String
- package
Type String - pom
Repository StringReferences Cleanup Policy - (Optional)
- (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> - artifactory
Requests BooleanCan Retrieve Remote Artifacts - default
Deployment StringRepo - description String
- excludes
Pattern String - includes
Pattern String - key
Pair String - (Optional) The keypair used to sign artifacts.
- notes String
- project
Key String - repo
Layout StringRef - repositories List<String>
- force
Maven booleanAuthentication - id string
- The provider-assigned unique ID for this managed resource.
- key string
- package
Type string - pom
Repository stringReferences Cleanup Policy - (Optional)
- (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[] - artifactory
Requests booleanCan Retrieve Remote Artifacts - default
Deployment stringRepo - description string
- excludes
Pattern string - includes
Pattern string - key
Pair string - (Optional) The keypair used to sign artifacts.
- notes string
- project
Key string - repo
Layout stringRef - repositories string[]
- force_
maven_ boolauthentication - id str
- The provider-assigned unique ID for this managed resource.
- key str
- package_
type str - pom_
repository_ strreferences_ cleanup_ policy - (Optional)
- (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] - artifactory_
requests_ boolcan_ retrieve_ remote_ artifacts - default_
deployment_ strrepo - description str
- excludes_
pattern str - includes_
pattern str - key_
pair str - (Optional) The keypair used to sign artifacts.
- notes str
- project_
key str - repo_
layout_ strref - repositories Sequence[str]
- force
Maven BooleanAuthentication - id String
- The provider-assigned unique ID for this managed resource.
- key String
- package
Type String - pom
Repository StringReferences Cleanup Policy - (Optional)
- (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> - artifactory
Requests BooleanCan Retrieve Remote Artifacts - default
Deployment StringRepo - description String
- excludes
Pattern String - includes
Pattern String - key
Pair String - (Optional) The keypair used to sign artifacts.
- notes String
- project
Key String - repo
Layout StringRef - repositories List<String>
Package Details
- Repository
- artifactory pulumi/pulumi-artifactory
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
artifactory
Terraform Provider.