1. Packages
  2. Artifactory
  3. API Docs
  4. getLocalRpmRepository
artifactory v6.7.0 published on Friday, Apr 19, 2024 by Pulumi

artifactory.getLocalRpmRepository

Explore with Pulumi AI

artifactory logo
artifactory v6.7.0 published on Friday, Apr 19, 2024 by Pulumi

    Retrieves a local RPM repository.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as artifactory from "@pulumi/artifactory";
    
    const local-test-rpm-repo-basic = artifactory.getLocalRpmRepository({
        key: "local-test-rpm-repo-basic",
    });
    
    import pulumi
    import pulumi_artifactory as artifactory
    
    local_test_rpm_repo_basic = artifactory.get_local_rpm_repository(key="local-test-rpm-repo-basic")
    
    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.LookupLocalRpmRepository(ctx, &artifactory.LookupLocalRpmRepositoryArgs{
    			Key: "local-test-rpm-repo-basic",
    		}, 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 local_test_rpm_repo_basic = Artifactory.GetLocalRpmRepository.Invoke(new()
        {
            Key = "local-test-rpm-repo-basic",
        });
    
    });
    
    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.GetLocalRpmRepositoryArgs;
    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 local-test-rpm-repo-basic = ArtifactoryFunctions.getLocalRpmRepository(GetLocalRpmRepositoryArgs.builder()
                .key("local-test-rpm-repo-basic")
                .build());
    
        }
    }
    
    variables:
      local-test-rpm-repo-basic:
        fn::invoke:
          Function: artifactory:getLocalRpmRepository
          Arguments:
            key: local-test-rpm-repo-basic
    

    Using getLocalRpmRepository

    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 getLocalRpmRepository(args: GetLocalRpmRepositoryArgs, opts?: InvokeOptions): Promise<GetLocalRpmRepositoryResult>
    function getLocalRpmRepositoryOutput(args: GetLocalRpmRepositoryOutputArgs, opts?: InvokeOptions): Output<GetLocalRpmRepositoryResult>
    def get_local_rpm_repository(archive_browsing_enabled: Optional[bool] = None,
                                 blacked_out: Optional[bool] = None,
                                 calculate_yum_metadata: Optional[bool] = None,
                                 cdn_redirect: Optional[bool] = None,
                                 description: Optional[str] = None,
                                 download_direct: Optional[bool] = None,
                                 enable_file_lists_indexing: Optional[bool] = None,
                                 excludes_pattern: Optional[str] = None,
                                 includes_pattern: Optional[str] = None,
                                 key: Optional[str] = None,
                                 notes: Optional[str] = None,
                                 primary_keypair_ref: Optional[str] = None,
                                 priority_resolution: Optional[bool] = None,
                                 project_environments: Optional[Sequence[str]] = None,
                                 project_key: Optional[str] = None,
                                 property_sets: Optional[Sequence[str]] = None,
                                 repo_layout_ref: Optional[str] = None,
                                 secondary_keypair_ref: Optional[str] = None,
                                 xray_index: Optional[bool] = None,
                                 yum_group_file_names: Optional[str] = None,
                                 yum_root_depth: Optional[int] = None,
                                 opts: Optional[InvokeOptions] = None) -> GetLocalRpmRepositoryResult
    def get_local_rpm_repository_output(archive_browsing_enabled: Optional[pulumi.Input[bool]] = None,
                                 blacked_out: Optional[pulumi.Input[bool]] = None,
                                 calculate_yum_metadata: Optional[pulumi.Input[bool]] = None,
                                 cdn_redirect: Optional[pulumi.Input[bool]] = None,
                                 description: Optional[pulumi.Input[str]] = None,
                                 download_direct: Optional[pulumi.Input[bool]] = None,
                                 enable_file_lists_indexing: Optional[pulumi.Input[bool]] = None,
                                 excludes_pattern: Optional[pulumi.Input[str]] = None,
                                 includes_pattern: Optional[pulumi.Input[str]] = None,
                                 key: Optional[pulumi.Input[str]] = None,
                                 notes: Optional[pulumi.Input[str]] = None,
                                 primary_keypair_ref: Optional[pulumi.Input[str]] = None,
                                 priority_resolution: Optional[pulumi.Input[bool]] = None,
                                 project_environments: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                                 project_key: Optional[pulumi.Input[str]] = None,
                                 property_sets: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                                 repo_layout_ref: Optional[pulumi.Input[str]] = None,
                                 secondary_keypair_ref: Optional[pulumi.Input[str]] = None,
                                 xray_index: Optional[pulumi.Input[bool]] = None,
                                 yum_group_file_names: Optional[pulumi.Input[str]] = None,
                                 yum_root_depth: Optional[pulumi.Input[int]] = None,
                                 opts: Optional[InvokeOptions] = None) -> Output[GetLocalRpmRepositoryResult]
    func LookupLocalRpmRepository(ctx *Context, args *LookupLocalRpmRepositoryArgs, opts ...InvokeOption) (*LookupLocalRpmRepositoryResult, error)
    func LookupLocalRpmRepositoryOutput(ctx *Context, args *LookupLocalRpmRepositoryOutputArgs, opts ...InvokeOption) LookupLocalRpmRepositoryResultOutput

    > Note: This function is named LookupLocalRpmRepository in the Go SDK.

    public static class GetLocalRpmRepository 
    {
        public static Task<GetLocalRpmRepositoryResult> InvokeAsync(GetLocalRpmRepositoryArgs args, InvokeOptions? opts = null)
        public static Output<GetLocalRpmRepositoryResult> Invoke(GetLocalRpmRepositoryInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetLocalRpmRepositoryResult> getLocalRpmRepository(GetLocalRpmRepositoryArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: artifactory:index/getLocalRpmRepository:getLocalRpmRepository
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Key string
    the identity key of the repo.
    ArchiveBrowsingEnabled bool
    BlackedOut bool
    CalculateYumMetadata bool
    Default: false.
    CdnRedirect bool
    Description string
    DownloadDirect bool
    EnableFileListsIndexing bool
    Default: false.
    ExcludesPattern string
    IncludesPattern string
    Notes string
    PrimaryKeypairRef string
    The primary GPG key to be used to sign packages.
    PriorityResolution bool
    ProjectEnvironments List<string>
    ProjectKey string
    PropertySets List<string>
    RepoLayoutRef string
    SecondaryKeypairRef string
    The secondary GPG key to be used to sign packages.
    XrayIndex bool
    YumGroupFileNames string
    A comma separated list of XML file names containing RPM group component definitions. Artifactory includes the group definitions as part of the calculated RPM metadata, as well as automatically generating a gzipped version of the group files, if required. Default is empty string.
    YumRootDepth int
    The depth, relative to the repository's root folder, where RPM metadata is created. This is useful when your repository contains multiple RPM repositories under parallel hierarchies. For example, if your RPMs are stored under 'fedora/linux/$releasever/$basearch', specify a depth of 4. Once the number of snapshots exceeds this setting, older versions are removed. A value of 0 (default) indicates there is no limit, and unique snapshots are not cleaned up.
    Key string
    the identity key of the repo.
    ArchiveBrowsingEnabled bool
    BlackedOut bool
    CalculateYumMetadata bool
    Default: false.
    CdnRedirect bool
    Description string
    DownloadDirect bool
    EnableFileListsIndexing bool
    Default: false.
    ExcludesPattern string
    IncludesPattern string
    Notes string
    PrimaryKeypairRef string
    The primary GPG key to be used to sign packages.
    PriorityResolution bool
    ProjectEnvironments []string
    ProjectKey string
    PropertySets []string
    RepoLayoutRef string
    SecondaryKeypairRef string
    The secondary GPG key to be used to sign packages.
    XrayIndex bool
    YumGroupFileNames string
    A comma separated list of XML file names containing RPM group component definitions. Artifactory includes the group definitions as part of the calculated RPM metadata, as well as automatically generating a gzipped version of the group files, if required. Default is empty string.
    YumRootDepth int
    The depth, relative to the repository's root folder, where RPM metadata is created. This is useful when your repository contains multiple RPM repositories under parallel hierarchies. For example, if your RPMs are stored under 'fedora/linux/$releasever/$basearch', specify a depth of 4. Once the number of snapshots exceeds this setting, older versions are removed. A value of 0 (default) indicates there is no limit, and unique snapshots are not cleaned up.
    key String
    the identity key of the repo.
    archiveBrowsingEnabled Boolean
    blackedOut Boolean
    calculateYumMetadata Boolean
    Default: false.
    cdnRedirect Boolean
    description String
    downloadDirect Boolean
    enableFileListsIndexing Boolean
    Default: false.
    excludesPattern String
    includesPattern String
    notes String
    primaryKeypairRef String
    The primary GPG key to be used to sign packages.
    priorityResolution Boolean
    projectEnvironments List<String>
    projectKey String
    propertySets List<String>
    repoLayoutRef String
    secondaryKeypairRef String
    The secondary GPG key to be used to sign packages.
    xrayIndex Boolean
    yumGroupFileNames String
    A comma separated list of XML file names containing RPM group component definitions. Artifactory includes the group definitions as part of the calculated RPM metadata, as well as automatically generating a gzipped version of the group files, if required. Default is empty string.
    yumRootDepth Integer
    The depth, relative to the repository's root folder, where RPM metadata is created. This is useful when your repository contains multiple RPM repositories under parallel hierarchies. For example, if your RPMs are stored under 'fedora/linux/$releasever/$basearch', specify a depth of 4. Once the number of snapshots exceeds this setting, older versions are removed. A value of 0 (default) indicates there is no limit, and unique snapshots are not cleaned up.
    key string
    the identity key of the repo.
    archiveBrowsingEnabled boolean
    blackedOut boolean
    calculateYumMetadata boolean
    Default: false.
    cdnRedirect boolean
    description string
    downloadDirect boolean
    enableFileListsIndexing boolean
    Default: false.
    excludesPattern string
    includesPattern string
    notes string
    primaryKeypairRef string
    The primary GPG key to be used to sign packages.
    priorityResolution boolean
    projectEnvironments string[]
    projectKey string
    propertySets string[]
    repoLayoutRef string
    secondaryKeypairRef string
    The secondary GPG key to be used to sign packages.
    xrayIndex boolean
    yumGroupFileNames string
    A comma separated list of XML file names containing RPM group component definitions. Artifactory includes the group definitions as part of the calculated RPM metadata, as well as automatically generating a gzipped version of the group files, if required. Default is empty string.
    yumRootDepth number
    The depth, relative to the repository's root folder, where RPM metadata is created. This is useful when your repository contains multiple RPM repositories under parallel hierarchies. For example, if your RPMs are stored under 'fedora/linux/$releasever/$basearch', specify a depth of 4. Once the number of snapshots exceeds this setting, older versions are removed. A value of 0 (default) indicates there is no limit, and unique snapshots are not cleaned up.
    key str
    the identity key of the repo.
    archive_browsing_enabled bool
    blacked_out bool
    calculate_yum_metadata bool
    Default: false.
    cdn_redirect bool
    description str
    download_direct bool
    enable_file_lists_indexing bool
    Default: false.
    excludes_pattern str
    includes_pattern str
    notes str
    primary_keypair_ref str
    The primary GPG key to be used to sign packages.
    priority_resolution bool
    project_environments Sequence[str]
    project_key str
    property_sets Sequence[str]
    repo_layout_ref str
    secondary_keypair_ref str
    The secondary GPG key to be used to sign packages.
    xray_index bool
    yum_group_file_names str
    A comma separated list of XML file names containing RPM group component definitions. Artifactory includes the group definitions as part of the calculated RPM metadata, as well as automatically generating a gzipped version of the group files, if required. Default is empty string.
    yum_root_depth int
    The depth, relative to the repository's root folder, where RPM metadata is created. This is useful when your repository contains multiple RPM repositories under parallel hierarchies. For example, if your RPMs are stored under 'fedora/linux/$releasever/$basearch', specify a depth of 4. Once the number of snapshots exceeds this setting, older versions are removed. A value of 0 (default) indicates there is no limit, and unique snapshots are not cleaned up.
    key String
    the identity key of the repo.
    archiveBrowsingEnabled Boolean
    blackedOut Boolean
    calculateYumMetadata Boolean
    Default: false.
    cdnRedirect Boolean
    description String
    downloadDirect Boolean
    enableFileListsIndexing Boolean
    Default: false.
    excludesPattern String
    includesPattern String
    notes String
    primaryKeypairRef String
    The primary GPG key to be used to sign packages.
    priorityResolution Boolean
    projectEnvironments List<String>
    projectKey String
    propertySets List<String>
    repoLayoutRef String
    secondaryKeypairRef String
    The secondary GPG key to be used to sign packages.
    xrayIndex Boolean
    yumGroupFileNames String
    A comma separated list of XML file names containing RPM group component definitions. Artifactory includes the group definitions as part of the calculated RPM metadata, as well as automatically generating a gzipped version of the group files, if required. Default is empty string.
    yumRootDepth Number
    The depth, relative to the repository's root folder, where RPM metadata is created. This is useful when your repository contains multiple RPM repositories under parallel hierarchies. For example, if your RPMs are stored under 'fedora/linux/$releasever/$basearch', specify a depth of 4. Once the number of snapshots exceeds this setting, older versions are removed. A value of 0 (default) indicates there is no limit, and unique snapshots are not cleaned up.

    getLocalRpmRepository Result

    The following output properties are available:

    Id string
    The provider-assigned unique ID for this managed resource.
    Key string
    PackageType string
    ProjectEnvironments List<string>
    ArchiveBrowsingEnabled bool
    BlackedOut bool
    CalculateYumMetadata bool
    Default: false.
    CdnRedirect bool
    Description string
    DownloadDirect bool
    EnableFileListsIndexing bool
    Default: false.
    ExcludesPattern string
    IncludesPattern string
    Notes string
    PrimaryKeypairRef string
    The primary GPG key to be used to sign packages.
    PriorityResolution bool
    ProjectKey string
    PropertySets List<string>
    RepoLayoutRef string
    SecondaryKeypairRef string
    The secondary GPG key to be used to sign packages.
    XrayIndex bool
    YumGroupFileNames string
    A comma separated list of XML file names containing RPM group component definitions. Artifactory includes the group definitions as part of the calculated RPM metadata, as well as automatically generating a gzipped version of the group files, if required. Default is empty string.
    YumRootDepth int
    The depth, relative to the repository's root folder, where RPM metadata is created. This is useful when your repository contains multiple RPM repositories under parallel hierarchies. For example, if your RPMs are stored under 'fedora/linux/$releasever/$basearch', specify a depth of 4. Once the number of snapshots exceeds this setting, older versions are removed. A value of 0 (default) indicates there is no limit, and unique snapshots are not cleaned up.
    Id string
    The provider-assigned unique ID for this managed resource.
    Key string
    PackageType string
    ProjectEnvironments []string
    ArchiveBrowsingEnabled bool
    BlackedOut bool
    CalculateYumMetadata bool
    Default: false.
    CdnRedirect bool
    Description string
    DownloadDirect bool
    EnableFileListsIndexing bool
    Default: false.
    ExcludesPattern string
    IncludesPattern string
    Notes string
    PrimaryKeypairRef string
    The primary GPG key to be used to sign packages.
    PriorityResolution bool
    ProjectKey string
    PropertySets []string
    RepoLayoutRef string
    SecondaryKeypairRef string
    The secondary GPG key to be used to sign packages.
    XrayIndex bool
    YumGroupFileNames string
    A comma separated list of XML file names containing RPM group component definitions. Artifactory includes the group definitions as part of the calculated RPM metadata, as well as automatically generating a gzipped version of the group files, if required. Default is empty string.
    YumRootDepth int
    The depth, relative to the repository's root folder, where RPM metadata is created. This is useful when your repository contains multiple RPM repositories under parallel hierarchies. For example, if your RPMs are stored under 'fedora/linux/$releasever/$basearch', specify a depth of 4. Once the number of snapshots exceeds this setting, older versions are removed. A value of 0 (default) indicates there is no limit, and unique snapshots are not cleaned up.
    id String
    The provider-assigned unique ID for this managed resource.
    key String
    packageType String
    projectEnvironments List<String>
    archiveBrowsingEnabled Boolean
    blackedOut Boolean
    calculateYumMetadata Boolean
    Default: false.
    cdnRedirect Boolean
    description String
    downloadDirect Boolean
    enableFileListsIndexing Boolean
    Default: false.
    excludesPattern String
    includesPattern String
    notes String
    primaryKeypairRef String
    The primary GPG key to be used to sign packages.
    priorityResolution Boolean
    projectKey String
    propertySets List<String>
    repoLayoutRef String
    secondaryKeypairRef String
    The secondary GPG key to be used to sign packages.
    xrayIndex Boolean
    yumGroupFileNames String
    A comma separated list of XML file names containing RPM group component definitions. Artifactory includes the group definitions as part of the calculated RPM metadata, as well as automatically generating a gzipped version of the group files, if required. Default is empty string.
    yumRootDepth Integer
    The depth, relative to the repository's root folder, where RPM metadata is created. This is useful when your repository contains multiple RPM repositories under parallel hierarchies. For example, if your RPMs are stored under 'fedora/linux/$releasever/$basearch', specify a depth of 4. Once the number of snapshots exceeds this setting, older versions are removed. A value of 0 (default) indicates there is no limit, and unique snapshots are not cleaned up.
    id string
    The provider-assigned unique ID for this managed resource.
    key string
    packageType string
    projectEnvironments string[]
    archiveBrowsingEnabled boolean
    blackedOut boolean
    calculateYumMetadata boolean
    Default: false.
    cdnRedirect boolean
    description string
    downloadDirect boolean
    enableFileListsIndexing boolean
    Default: false.
    excludesPattern string
    includesPattern string
    notes string
    primaryKeypairRef string
    The primary GPG key to be used to sign packages.
    priorityResolution boolean
    projectKey string
    propertySets string[]
    repoLayoutRef string
    secondaryKeypairRef string
    The secondary GPG key to be used to sign packages.
    xrayIndex boolean
    yumGroupFileNames string
    A comma separated list of XML file names containing RPM group component definitions. Artifactory includes the group definitions as part of the calculated RPM metadata, as well as automatically generating a gzipped version of the group files, if required. Default is empty string.
    yumRootDepth number
    The depth, relative to the repository's root folder, where RPM metadata is created. This is useful when your repository contains multiple RPM repositories under parallel hierarchies. For example, if your RPMs are stored under 'fedora/linux/$releasever/$basearch', specify a depth of 4. Once the number of snapshots exceeds this setting, older versions are removed. A value of 0 (default) indicates there is no limit, and unique snapshots are not cleaned up.
    id str
    The provider-assigned unique ID for this managed resource.
    key str
    package_type str
    project_environments Sequence[str]
    archive_browsing_enabled bool
    blacked_out bool
    calculate_yum_metadata bool
    Default: false.
    cdn_redirect bool
    description str
    download_direct bool
    enable_file_lists_indexing bool
    Default: false.
    excludes_pattern str
    includes_pattern str
    notes str
    primary_keypair_ref str
    The primary GPG key to be used to sign packages.
    priority_resolution bool
    project_key str
    property_sets Sequence[str]
    repo_layout_ref str
    secondary_keypair_ref str
    The secondary GPG key to be used to sign packages.
    xray_index bool
    yum_group_file_names str
    A comma separated list of XML file names containing RPM group component definitions. Artifactory includes the group definitions as part of the calculated RPM metadata, as well as automatically generating a gzipped version of the group files, if required. Default is empty string.
    yum_root_depth int
    The depth, relative to the repository's root folder, where RPM metadata is created. This is useful when your repository contains multiple RPM repositories under parallel hierarchies. For example, if your RPMs are stored under 'fedora/linux/$releasever/$basearch', specify a depth of 4. Once the number of snapshots exceeds this setting, older versions are removed. A value of 0 (default) indicates there is no limit, and unique snapshots are not cleaned up.
    id String
    The provider-assigned unique ID for this managed resource.
    key String
    packageType String
    projectEnvironments List<String>
    archiveBrowsingEnabled Boolean
    blackedOut Boolean
    calculateYumMetadata Boolean
    Default: false.
    cdnRedirect Boolean
    description String
    downloadDirect Boolean
    enableFileListsIndexing Boolean
    Default: false.
    excludesPattern String
    includesPattern String
    notes String
    primaryKeypairRef String
    The primary GPG key to be used to sign packages.
    priorityResolution Boolean
    projectKey String
    propertySets List<String>
    repoLayoutRef String
    secondaryKeypairRef String
    The secondary GPG key to be used to sign packages.
    xrayIndex Boolean
    yumGroupFileNames String
    A comma separated list of XML file names containing RPM group component definitions. Artifactory includes the group definitions as part of the calculated RPM metadata, as well as automatically generating a gzipped version of the group files, if required. Default is empty string.
    yumRootDepth Number
    The depth, relative to the repository's root folder, where RPM metadata is created. This is useful when your repository contains multiple RPM repositories under parallel hierarchies. For example, if your RPMs are stored under 'fedora/linux/$releasever/$basearch', specify a depth of 4. Once the number of snapshots exceeds this setting, older versions are removed. A value of 0 (default) indicates there is no limit, and unique snapshots are not cleaned up.

    Package Details

    Repository
    artifactory pulumi/pulumi-artifactory
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the artifactory Terraform Provider.
    artifactory logo
    artifactory v6.7.0 published on Friday, Apr 19, 2024 by Pulumi