1. Packages
  2. Artifactory
  3. API Docs
  4. getFederatedDockerV1Repository
artifactory v6.4.2 published on Thursday, Mar 28, 2024 by Pulumi

artifactory.getFederatedDockerV1Repository

Explore with Pulumi AI

artifactory logo
artifactory v6.4.2 published on Thursday, Mar 28, 2024 by Pulumi

    Retrieves a federated Docker repository.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as artifactory from "@pulumi/artifactory";
    
    const federated-test-docker-repo = artifactory.getFederatedDockerV1Repository({
        key: "federated-test-docker-repo",
    });
    
    import pulumi
    import pulumi_artifactory as artifactory
    
    federated_test_docker_repo = artifactory.get_federated_docker_v1_repository(key="federated-test-docker-repo")
    
    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.LookupFederatedDockerV1Repository(ctx, &artifactory.LookupFederatedDockerV1RepositoryArgs{
    			Key: "federated-test-docker-repo",
    		}, 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 federated_test_docker_repo = Artifactory.GetFederatedDockerV1Repository.Invoke(new()
        {
            Key = "federated-test-docker-repo",
        });
    
    });
    
    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.GetFederatedDockerV1RepositoryArgs;
    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 federated-test-docker-repo = ArtifactoryFunctions.getFederatedDockerV1Repository(GetFederatedDockerV1RepositoryArgs.builder()
                .key("federated-test-docker-repo")
                .build());
    
        }
    }
    
    variables:
      federated-test-docker-repo:
        fn::invoke:
          Function: artifactory:getFederatedDockerV1Repository
          Arguments:
            key: federated-test-docker-repo
    

    Using getFederatedDockerV1Repository

    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 getFederatedDockerV1Repository(args: GetFederatedDockerV1RepositoryArgs, opts?: InvokeOptions): Promise<GetFederatedDockerV1RepositoryResult>
    function getFederatedDockerV1RepositoryOutput(args: GetFederatedDockerV1RepositoryOutputArgs, opts?: InvokeOptions): Output<GetFederatedDockerV1RepositoryResult>
    def get_federated_docker_v1_repository(archive_browsing_enabled: Optional[bool] = None,
                                           blacked_out: Optional[bool] = None,
                                           cdn_redirect: Optional[bool] = None,
                                           cleanup_on_delete: Optional[bool] = None,
                                           description: Optional[str] = None,
                                           disable_proxy: Optional[bool] = None,
                                           download_direct: Optional[bool] = None,
                                           excludes_pattern: Optional[str] = None,
                                           includes_pattern: Optional[str] = None,
                                           key: Optional[str] = None,
                                           max_unique_tags: Optional[int] = None,
                                           members: Optional[Sequence[GetFederatedDockerV1RepositoryMember]] = None,
                                           notes: 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,
                                           proxy: Optional[str] = None,
                                           repo_layout_ref: Optional[str] = None,
                                           xray_index: Optional[bool] = None,
                                           opts: Optional[InvokeOptions] = None) -> GetFederatedDockerV1RepositoryResult
    def get_federated_docker_v1_repository_output(archive_browsing_enabled: Optional[pulumi.Input[bool]] = None,
                                           blacked_out: Optional[pulumi.Input[bool]] = None,
                                           cdn_redirect: Optional[pulumi.Input[bool]] = None,
                                           cleanup_on_delete: Optional[pulumi.Input[bool]] = None,
                                           description: Optional[pulumi.Input[str]] = None,
                                           disable_proxy: Optional[pulumi.Input[bool]] = None,
                                           download_direct: 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,
                                           max_unique_tags: Optional[pulumi.Input[int]] = None,
                                           members: Optional[pulumi.Input[Sequence[pulumi.Input[GetFederatedDockerV1RepositoryMemberArgs]]]] = None,
                                           notes: 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,
                                           proxy: Optional[pulumi.Input[str]] = None,
                                           repo_layout_ref: Optional[pulumi.Input[str]] = None,
                                           xray_index: Optional[pulumi.Input[bool]] = None,
                                           opts: Optional[InvokeOptions] = None) -> Output[GetFederatedDockerV1RepositoryResult]
    func LookupFederatedDockerV1Repository(ctx *Context, args *LookupFederatedDockerV1RepositoryArgs, opts ...InvokeOption) (*LookupFederatedDockerV1RepositoryResult, error)
    func LookupFederatedDockerV1RepositoryOutput(ctx *Context, args *LookupFederatedDockerV1RepositoryOutputArgs, opts ...InvokeOption) LookupFederatedDockerV1RepositoryResultOutput

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

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

    The following arguments are supported:

    Key string
    the identity key of the repo.
    ArchiveBrowsingEnabled bool
    BlackedOut bool
    CdnRedirect bool
    CleanupOnDelete bool
    Description string
    DisableProxy bool
    When set to true, the proxy is disabled, and not returned in the API response body. If there is a default proxy set for the Artifactory instance, it will be ignored, too.
    DownloadDirect bool
    ExcludesPattern string
    IncludesPattern string
    MaxUniqueTags int
    Members List<GetFederatedDockerV1RepositoryMember>
    The list of Federated members and must contain this repository URL (configured base URL /artifactory/ + repo key). Note that each of the federated members will need to have a base URL set. Please follow the instruction to set up Federated repositories correctly.
    Notes string
    PriorityResolution bool
    ProjectEnvironments List<string>
    ProjectKey string
    PropertySets List<string>
    Proxy string
    Proxy key from Artifactory Proxies settings.
    RepoLayoutRef string
    XrayIndex bool
    Key string
    the identity key of the repo.
    ArchiveBrowsingEnabled bool
    BlackedOut bool
    CdnRedirect bool
    CleanupOnDelete bool
    Description string
    DisableProxy bool
    When set to true, the proxy is disabled, and not returned in the API response body. If there is a default proxy set for the Artifactory instance, it will be ignored, too.
    DownloadDirect bool
    ExcludesPattern string
    IncludesPattern string
    MaxUniqueTags int
    Members []GetFederatedDockerV1RepositoryMember
    The list of Federated members and must contain this repository URL (configured base URL /artifactory/ + repo key). Note that each of the federated members will need to have a base URL set. Please follow the instruction to set up Federated repositories correctly.
    Notes string
    PriorityResolution bool
    ProjectEnvironments []string
    ProjectKey string
    PropertySets []string
    Proxy string
    Proxy key from Artifactory Proxies settings.
    RepoLayoutRef string
    XrayIndex bool
    key String
    the identity key of the repo.
    archiveBrowsingEnabled Boolean
    blackedOut Boolean
    cdnRedirect Boolean
    cleanupOnDelete Boolean
    description String
    disableProxy Boolean
    When set to true, the proxy is disabled, and not returned in the API response body. If there is a default proxy set for the Artifactory instance, it will be ignored, too.
    downloadDirect Boolean
    excludesPattern String
    includesPattern String
    maxUniqueTags Integer
    members List<GetFederatedDockerV1RepositoryMember>
    The list of Federated members and must contain this repository URL (configured base URL /artifactory/ + repo key). Note that each of the federated members will need to have a base URL set. Please follow the instruction to set up Federated repositories correctly.
    notes String
    priorityResolution Boolean
    projectEnvironments List<String>
    projectKey String
    propertySets List<String>
    proxy String
    Proxy key from Artifactory Proxies settings.
    repoLayoutRef String
    xrayIndex Boolean
    key string
    the identity key of the repo.
    archiveBrowsingEnabled boolean
    blackedOut boolean
    cdnRedirect boolean
    cleanupOnDelete boolean
    description string
    disableProxy boolean
    When set to true, the proxy is disabled, and not returned in the API response body. If there is a default proxy set for the Artifactory instance, it will be ignored, too.
    downloadDirect boolean
    excludesPattern string
    includesPattern string
    maxUniqueTags number
    members GetFederatedDockerV1RepositoryMember[]
    The list of Federated members and must contain this repository URL (configured base URL /artifactory/ + repo key). Note that each of the federated members will need to have a base URL set. Please follow the instruction to set up Federated repositories correctly.
    notes string
    priorityResolution boolean
    projectEnvironments string[]
    projectKey string
    propertySets string[]
    proxy string
    Proxy key from Artifactory Proxies settings.
    repoLayoutRef string
    xrayIndex boolean
    key str
    the identity key of the repo.
    archive_browsing_enabled bool
    blacked_out bool
    cdn_redirect bool
    cleanup_on_delete bool
    description str
    disable_proxy bool
    When set to true, the proxy is disabled, and not returned in the API response body. If there is a default proxy set for the Artifactory instance, it will be ignored, too.
    download_direct bool
    excludes_pattern str
    includes_pattern str
    max_unique_tags int
    members Sequence[GetFederatedDockerV1RepositoryMember]
    The list of Federated members and must contain this repository URL (configured base URL /artifactory/ + repo key). Note that each of the federated members will need to have a base URL set. Please follow the instruction to set up Federated repositories correctly.
    notes str
    priority_resolution bool
    project_environments Sequence[str]
    project_key str
    property_sets Sequence[str]
    proxy str
    Proxy key from Artifactory Proxies settings.
    repo_layout_ref str
    xray_index bool
    key String
    the identity key of the repo.
    archiveBrowsingEnabled Boolean
    blackedOut Boolean
    cdnRedirect Boolean
    cleanupOnDelete Boolean
    description String
    disableProxy Boolean
    When set to true, the proxy is disabled, and not returned in the API response body. If there is a default proxy set for the Artifactory instance, it will be ignored, too.
    downloadDirect Boolean
    excludesPattern String
    includesPattern String
    maxUniqueTags Number
    members List<Property Map>
    The list of Federated members and must contain this repository URL (configured base URL /artifactory/ + repo key). Note that each of the federated members will need to have a base URL set. Please follow the instruction to set up Federated repositories correctly.
    notes String
    priorityResolution Boolean
    projectEnvironments List<String>
    projectKey String
    propertySets List<String>
    proxy String
    Proxy key from Artifactory Proxies settings.
    repoLayoutRef String
    xrayIndex Boolean

    getFederatedDockerV1Repository Result

    The following output properties are available:

    ApiVersion string
    BlockPushingSchema1 bool
    Id string
    The provider-assigned unique ID for this managed resource.
    Key string
    MaxUniqueTags int
    PackageType string
    ProjectEnvironments List<string>
    TagRetention int
    ArchiveBrowsingEnabled bool
    BlackedOut bool
    CdnRedirect bool
    CleanupOnDelete bool
    Description string
    DisableProxy bool
    When set to true, the proxy is disabled, and not returned in the API response body. If there is a default proxy set for the Artifactory instance, it will be ignored, too.
    DownloadDirect bool
    ExcludesPattern string
    IncludesPattern string
    Members List<GetFederatedDockerV1RepositoryMember>
    The list of Federated members and must contain this repository URL (configured base URL /artifactory/ + repo key). Note that each of the federated members will need to have a base URL set. Please follow the instruction to set up Federated repositories correctly.
    Notes string
    PriorityResolution bool
    ProjectKey string
    PropertySets List<string>
    Proxy string
    Proxy key from Artifactory Proxies settings.
    RepoLayoutRef string
    XrayIndex bool
    ApiVersion string
    BlockPushingSchema1 bool
    Id string
    The provider-assigned unique ID for this managed resource.
    Key string
    MaxUniqueTags int
    PackageType string
    ProjectEnvironments []string
    TagRetention int
    ArchiveBrowsingEnabled bool
    BlackedOut bool
    CdnRedirect bool
    CleanupOnDelete bool
    Description string
    DisableProxy bool
    When set to true, the proxy is disabled, and not returned in the API response body. If there is a default proxy set for the Artifactory instance, it will be ignored, too.
    DownloadDirect bool
    ExcludesPattern string
    IncludesPattern string
    Members []GetFederatedDockerV1RepositoryMember
    The list of Federated members and must contain this repository URL (configured base URL /artifactory/ + repo key). Note that each of the federated members will need to have a base URL set. Please follow the instruction to set up Federated repositories correctly.
    Notes string
    PriorityResolution bool
    ProjectKey string
    PropertySets []string
    Proxy string
    Proxy key from Artifactory Proxies settings.
    RepoLayoutRef string
    XrayIndex bool
    apiVersion String
    blockPushingSchema1 Boolean
    id String
    The provider-assigned unique ID for this managed resource.
    key String
    maxUniqueTags Integer
    packageType String
    projectEnvironments List<String>
    tagRetention Integer
    archiveBrowsingEnabled Boolean
    blackedOut Boolean
    cdnRedirect Boolean
    cleanupOnDelete Boolean
    description String
    disableProxy Boolean
    When set to true, the proxy is disabled, and not returned in the API response body. If there is a default proxy set for the Artifactory instance, it will be ignored, too.
    downloadDirect Boolean
    excludesPattern String
    includesPattern String
    members List<GetFederatedDockerV1RepositoryMember>
    The list of Federated members and must contain this repository URL (configured base URL /artifactory/ + repo key). Note that each of the federated members will need to have a base URL set. Please follow the instruction to set up Federated repositories correctly.
    notes String
    priorityResolution Boolean
    projectKey String
    propertySets List<String>
    proxy String
    Proxy key from Artifactory Proxies settings.
    repoLayoutRef String
    xrayIndex Boolean
    apiVersion string
    blockPushingSchema1 boolean
    id string
    The provider-assigned unique ID for this managed resource.
    key string
    maxUniqueTags number
    packageType string
    projectEnvironments string[]
    tagRetention number
    archiveBrowsingEnabled boolean
    blackedOut boolean
    cdnRedirect boolean
    cleanupOnDelete boolean
    description string
    disableProxy boolean
    When set to true, the proxy is disabled, and not returned in the API response body. If there is a default proxy set for the Artifactory instance, it will be ignored, too.
    downloadDirect boolean
    excludesPattern string
    includesPattern string
    members GetFederatedDockerV1RepositoryMember[]
    The list of Federated members and must contain this repository URL (configured base URL /artifactory/ + repo key). Note that each of the federated members will need to have a base URL set. Please follow the instruction to set up Federated repositories correctly.
    notes string
    priorityResolution boolean
    projectKey string
    propertySets string[]
    proxy string
    Proxy key from Artifactory Proxies settings.
    repoLayoutRef string
    xrayIndex boolean
    api_version str
    block_pushing_schema1 bool
    id str
    The provider-assigned unique ID for this managed resource.
    key str
    max_unique_tags int
    package_type str
    project_environments Sequence[str]
    tag_retention int
    archive_browsing_enabled bool
    blacked_out bool
    cdn_redirect bool
    cleanup_on_delete bool
    description str
    disable_proxy bool
    When set to true, the proxy is disabled, and not returned in the API response body. If there is a default proxy set for the Artifactory instance, it will be ignored, too.
    download_direct bool
    excludes_pattern str
    includes_pattern str
    members Sequence[GetFederatedDockerV1RepositoryMember]
    The list of Federated members and must contain this repository URL (configured base URL /artifactory/ + repo key). Note that each of the federated members will need to have a base URL set. Please follow the instruction to set up Federated repositories correctly.
    notes str
    priority_resolution bool
    project_key str
    property_sets Sequence[str]
    proxy str
    Proxy key from Artifactory Proxies settings.
    repo_layout_ref str
    xray_index bool
    apiVersion String
    blockPushingSchema1 Boolean
    id String
    The provider-assigned unique ID for this managed resource.
    key String
    maxUniqueTags Number
    packageType String
    projectEnvironments List<String>
    tagRetention Number
    archiveBrowsingEnabled Boolean
    blackedOut Boolean
    cdnRedirect Boolean
    cleanupOnDelete Boolean
    description String
    disableProxy Boolean
    When set to true, the proxy is disabled, and not returned in the API response body. If there is a default proxy set for the Artifactory instance, it will be ignored, too.
    downloadDirect Boolean
    excludesPattern String
    includesPattern String
    members List<Property Map>
    The list of Federated members and must contain this repository URL (configured base URL /artifactory/ + repo key). Note that each of the federated members will need to have a base URL set. Please follow the instruction to set up Federated repositories correctly.
    notes String
    priorityResolution Boolean
    projectKey String
    propertySets List<String>
    proxy String
    Proxy key from Artifactory Proxies settings.
    repoLayoutRef String
    xrayIndex Boolean

    Supporting Types

    GetFederatedDockerV1RepositoryMember

    Enabled bool
    Represents the active state of the federated member. It is supported to change the enabled status of my own member. The config will be updated on the other federated members automatically.
    Url string
    Full URL to ending with the repository name.
    Enabled bool
    Represents the active state of the federated member. It is supported to change the enabled status of my own member. The config will be updated on the other federated members automatically.
    Url string
    Full URL to ending with the repository name.
    enabled Boolean
    Represents the active state of the federated member. It is supported to change the enabled status of my own member. The config will be updated on the other federated members automatically.
    url String
    Full URL to ending with the repository name.
    enabled boolean
    Represents the active state of the federated member. It is supported to change the enabled status of my own member. The config will be updated on the other federated members automatically.
    url string
    Full URL to ending with the repository name.
    enabled bool
    Represents the active state of the federated member. It is supported to change the enabled status of my own member. The config will be updated on the other federated members automatically.
    url str
    Full URL to ending with the repository name.
    enabled Boolean
    Represents the active state of the federated member. It is supported to change the enabled status of my own member. The config will be updated on the other federated members automatically.
    url String
    Full URL to ending with the repository name.

    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.2 published on Thursday, Mar 28, 2024 by Pulumi