1. Packages
  2. Artifactory
  3. API Docs
  4. getLocalDebianRepository
artifactory v6.4.1 published on Monday, Mar 25, 2024 by Pulumi

artifactory.getLocalDebianRepository

Explore with Pulumi AI

artifactory logo
artifactory v6.4.1 published on Monday, Mar 25, 2024 by Pulumi

    Retrieves a local Debian repository.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as artifactory from "@pulumi/artifactory";
    
    const local-test-debian-repo-basic = artifactory.getLocalDebianRepository({
        key: "local-test-debian-repo-basic",
    });
    
    import pulumi
    import pulumi_artifactory as artifactory
    
    local_test_debian_repo_basic = artifactory.get_local_debian_repository(key="local-test-debian-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.GetLocalDebianRepository(ctx, &artifactory.GetLocalDebianRepositoryArgs{
    			Key: "local-test-debian-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_debian_repo_basic = Artifactory.GetLocalDebianRepository.Invoke(new()
        {
            Key = "local-test-debian-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.GetLocalDebianRepositoryArgs;
    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-debian-repo-basic = ArtifactoryFunctions.getLocalDebianRepository(GetLocalDebianRepositoryArgs.builder()
                .key("local-test-debian-repo-basic")
                .build());
    
        }
    }
    
    variables:
      local-test-debian-repo-basic:
        fn::invoke:
          Function: artifactory:getLocalDebianRepository
          Arguments:
            key: local-test-debian-repo-basic
    

    Using getLocalDebianRepository

    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 getLocalDebianRepository(args: GetLocalDebianRepositoryArgs, opts?: InvokeOptions): Promise<GetLocalDebianRepositoryResult>
    function getLocalDebianRepositoryOutput(args: GetLocalDebianRepositoryOutputArgs, opts?: InvokeOptions): Output<GetLocalDebianRepositoryResult>
    def get_local_debian_repository(archive_browsing_enabled: Optional[bool] = None,
                                    blacked_out: Optional[bool] = None,
                                    cdn_redirect: Optional[bool] = None,
                                    description: Optional[str] = None,
                                    download_direct: Optional[bool] = None,
                                    excludes_pattern: Optional[str] = None,
                                    includes_pattern: Optional[str] = None,
                                    index_compression_formats: Optional[Sequence[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,
                                    trivial_layout: Optional[bool] = None,
                                    xray_index: Optional[bool] = None,
                                    opts: Optional[InvokeOptions] = None) -> GetLocalDebianRepositoryResult
    def get_local_debian_repository_output(archive_browsing_enabled: Optional[pulumi.Input[bool]] = None,
                                    blacked_out: 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,
                                    excludes_pattern: Optional[pulumi.Input[str]] = None,
                                    includes_pattern: Optional[pulumi.Input[str]] = None,
                                    index_compression_formats: Optional[pulumi.Input[Sequence[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,
                                    trivial_layout: Optional[pulumi.Input[bool]] = None,
                                    xray_index: Optional[pulumi.Input[bool]] = None,
                                    opts: Optional[InvokeOptions] = None) -> Output[GetLocalDebianRepositoryResult]
    func GetLocalDebianRepository(ctx *Context, args *GetLocalDebianRepositoryArgs, opts ...InvokeOption) (*GetLocalDebianRepositoryResult, error)
    func GetLocalDebianRepositoryOutput(ctx *Context, args *GetLocalDebianRepositoryOutputArgs, opts ...InvokeOption) GetLocalDebianRepositoryResultOutput

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

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

    The following arguments are supported:

    Key string
    the identity key of the repo.
    ArchiveBrowsingEnabled bool
    BlackedOut bool
    CdnRedirect bool
    Description string
    DownloadDirect bool
    ExcludesPattern string
    IncludesPattern string
    IndexCompressionFormats List<string>
    The options are Bzip2 (.bz2 extension) (default), LZMA (.lzma extension) and XZ (.xz extension).
    Notes string
    PrimaryKeypairRef string
    The primary RSA key to be used to sign packages.
    PriorityResolution bool
    ProjectEnvironments List<string>
    ProjectKey string
    PropertySets List<string>
    RepoLayoutRef string
    SecondaryKeypairRef string
    The secondary RSA key to be used to sign packages.
    TrivialLayout bool
    When set, the repository will use the deprecated trivial layout.

    Deprecated:You shouldn't be using this

    XrayIndex bool
    Key string
    the identity key of the repo.
    ArchiveBrowsingEnabled bool
    BlackedOut bool
    CdnRedirect bool
    Description string
    DownloadDirect bool
    ExcludesPattern string
    IncludesPattern string
    IndexCompressionFormats []string
    The options are Bzip2 (.bz2 extension) (default), LZMA (.lzma extension) and XZ (.xz extension).
    Notes string
    PrimaryKeypairRef string
    The primary RSA key to be used to sign packages.
    PriorityResolution bool
    ProjectEnvironments []string
    ProjectKey string
    PropertySets []string
    RepoLayoutRef string
    SecondaryKeypairRef string
    The secondary RSA key to be used to sign packages.
    TrivialLayout bool
    When set, the repository will use the deprecated trivial layout.

    Deprecated:You shouldn't be using this

    XrayIndex bool
    key String
    the identity key of the repo.
    archiveBrowsingEnabled Boolean
    blackedOut Boolean
    cdnRedirect Boolean
    description String
    downloadDirect Boolean
    excludesPattern String
    includesPattern String
    indexCompressionFormats List<String>
    The options are Bzip2 (.bz2 extension) (default), LZMA (.lzma extension) and XZ (.xz extension).
    notes String
    primaryKeypairRef String
    The primary RSA key to be used to sign packages.
    priorityResolution Boolean
    projectEnvironments List<String>
    projectKey String
    propertySets List<String>
    repoLayoutRef String
    secondaryKeypairRef String
    The secondary RSA key to be used to sign packages.
    trivialLayout Boolean
    When set, the repository will use the deprecated trivial layout.

    Deprecated:You shouldn't be using this

    xrayIndex Boolean
    key string
    the identity key of the repo.
    archiveBrowsingEnabled boolean
    blackedOut boolean
    cdnRedirect boolean
    description string
    downloadDirect boolean
    excludesPattern string
    includesPattern string
    indexCompressionFormats string[]
    The options are Bzip2 (.bz2 extension) (default), LZMA (.lzma extension) and XZ (.xz extension).
    notes string
    primaryKeypairRef string
    The primary RSA key to be used to sign packages.
    priorityResolution boolean
    projectEnvironments string[]
    projectKey string
    propertySets string[]
    repoLayoutRef string
    secondaryKeypairRef string
    The secondary RSA key to be used to sign packages.
    trivialLayout boolean
    When set, the repository will use the deprecated trivial layout.

    Deprecated:You shouldn't be using this

    xrayIndex boolean
    key str
    the identity key of the repo.
    archive_browsing_enabled bool
    blacked_out bool
    cdn_redirect bool
    description str
    download_direct bool
    excludes_pattern str
    includes_pattern str
    index_compression_formats Sequence[str]
    The options are Bzip2 (.bz2 extension) (default), LZMA (.lzma extension) and XZ (.xz extension).
    notes str
    primary_keypair_ref str
    The primary RSA 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 RSA key to be used to sign packages.
    trivial_layout bool
    When set, the repository will use the deprecated trivial layout.

    Deprecated:You shouldn't be using this

    xray_index bool
    key String
    the identity key of the repo.
    archiveBrowsingEnabled Boolean
    blackedOut Boolean
    cdnRedirect Boolean
    description String
    downloadDirect Boolean
    excludesPattern String
    includesPattern String
    indexCompressionFormats List<String>
    The options are Bzip2 (.bz2 extension) (default), LZMA (.lzma extension) and XZ (.xz extension).
    notes String
    primaryKeypairRef String
    The primary RSA key to be used to sign packages.
    priorityResolution Boolean
    projectEnvironments List<String>
    projectKey String
    propertySets List<String>
    repoLayoutRef String
    secondaryKeypairRef String
    The secondary RSA key to be used to sign packages.
    trivialLayout Boolean
    When set, the repository will use the deprecated trivial layout.

    Deprecated:You shouldn't be using this

    xrayIndex Boolean

    getLocalDebianRepository 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
    CdnRedirect bool
    Description string
    DownloadDirect bool
    ExcludesPattern string
    IncludesPattern string
    IndexCompressionFormats List<string>
    The options are Bzip2 (.bz2 extension) (default), LZMA (.lzma extension) and XZ (.xz extension).
    Notes string
    PrimaryKeypairRef string
    The primary RSA key to be used to sign packages.
    PriorityResolution bool
    ProjectKey string
    PropertySets List<string>
    RepoLayoutRef string
    SecondaryKeypairRef string
    The secondary RSA key to be used to sign packages.
    TrivialLayout bool
    When set, the repository will use the deprecated trivial layout.

    Deprecated:You shouldn't be using this

    XrayIndex bool
    Id string
    The provider-assigned unique ID for this managed resource.
    Key string
    PackageType string
    ProjectEnvironments []string
    ArchiveBrowsingEnabled bool
    BlackedOut bool
    CdnRedirect bool
    Description string
    DownloadDirect bool
    ExcludesPattern string
    IncludesPattern string
    IndexCompressionFormats []string
    The options are Bzip2 (.bz2 extension) (default), LZMA (.lzma extension) and XZ (.xz extension).
    Notes string
    PrimaryKeypairRef string
    The primary RSA key to be used to sign packages.
    PriorityResolution bool
    ProjectKey string
    PropertySets []string
    RepoLayoutRef string
    SecondaryKeypairRef string
    The secondary RSA key to be used to sign packages.
    TrivialLayout bool
    When set, the repository will use the deprecated trivial layout.

    Deprecated:You shouldn't be using this

    XrayIndex bool
    id String
    The provider-assigned unique ID for this managed resource.
    key String
    packageType String
    projectEnvironments List<String>
    archiveBrowsingEnabled Boolean
    blackedOut Boolean
    cdnRedirect Boolean
    description String
    downloadDirect Boolean
    excludesPattern String
    includesPattern String
    indexCompressionFormats List<String>
    The options are Bzip2 (.bz2 extension) (default), LZMA (.lzma extension) and XZ (.xz extension).
    notes String
    primaryKeypairRef String
    The primary RSA key to be used to sign packages.
    priorityResolution Boolean
    projectKey String
    propertySets List<String>
    repoLayoutRef String
    secondaryKeypairRef String
    The secondary RSA key to be used to sign packages.
    trivialLayout Boolean
    When set, the repository will use the deprecated trivial layout.

    Deprecated:You shouldn't be using this

    xrayIndex Boolean
    id string
    The provider-assigned unique ID for this managed resource.
    key string
    packageType string
    projectEnvironments string[]
    archiveBrowsingEnabled boolean
    blackedOut boolean
    cdnRedirect boolean
    description string
    downloadDirect boolean
    excludesPattern string
    includesPattern string
    indexCompressionFormats string[]
    The options are Bzip2 (.bz2 extension) (default), LZMA (.lzma extension) and XZ (.xz extension).
    notes string
    primaryKeypairRef string
    The primary RSA key to be used to sign packages.
    priorityResolution boolean
    projectKey string
    propertySets string[]
    repoLayoutRef string
    secondaryKeypairRef string
    The secondary RSA key to be used to sign packages.
    trivialLayout boolean
    When set, the repository will use the deprecated trivial layout.

    Deprecated:You shouldn't be using this

    xrayIndex boolean
    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
    cdn_redirect bool
    description str
    download_direct bool
    excludes_pattern str
    includes_pattern str
    index_compression_formats Sequence[str]
    The options are Bzip2 (.bz2 extension) (default), LZMA (.lzma extension) and XZ (.xz extension).
    notes str
    primary_keypair_ref str
    The primary RSA 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 RSA key to be used to sign packages.
    trivial_layout bool
    When set, the repository will use the deprecated trivial layout.

    Deprecated:You shouldn't be using this

    xray_index bool
    id String
    The provider-assigned unique ID for this managed resource.
    key String
    packageType String
    projectEnvironments List<String>
    archiveBrowsingEnabled Boolean
    blackedOut Boolean
    cdnRedirect Boolean
    description String
    downloadDirect Boolean
    excludesPattern String
    includesPattern String
    indexCompressionFormats List<String>
    The options are Bzip2 (.bz2 extension) (default), LZMA (.lzma extension) and XZ (.xz extension).
    notes String
    primaryKeypairRef String
    The primary RSA key to be used to sign packages.
    priorityResolution Boolean
    projectKey String
    propertySets List<String>
    repoLayoutRef String
    secondaryKeypairRef String
    The secondary RSA key to be used to sign packages.
    trivialLayout Boolean
    When set, the repository will use the deprecated trivial layout.

    Deprecated:You shouldn't be using this

    xrayIndex Boolean

    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.4.1 published on Monday, Mar 25, 2024 by Pulumi