artifactory.getFederatedCargoRepository

Explore with Pulumi AI

Retrieves a federated Cargo repository.

Example Usage

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Artifactory = Pulumi.Artifactory;

return await Deployment.RunAsync(() => 
{
    var federated_test_cargo_repo = new Artifactory.FederatedCargoRepository("federated-test-cargo-repo", new()
    {
        Key = "federated-test-cargo-repo",
    });

});
package main

import (
	"github.com/pulumi/pulumi-artifactory/sdk/v3/go/artifactory"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := artifactory.NewFederatedCargoRepository(ctx, "federated-test-cargo-repo", &artifactory.FederatedCargoRepositoryArgs{
			Key: pulumi.String("federated-test-cargo-repo"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.artifactory.FederatedCargoRepository;
import com.pulumi.artifactory.FederatedCargoRepositoryArgs;
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 federated_test_cargo_repo = new FederatedCargoRepository("federated-test-cargo-repo", FederatedCargoRepositoryArgs.builder()        
            .key("federated-test-cargo-repo")
            .build());

    }
}
import pulumi
import pulumi_artifactory as artifactory

federated_test_cargo_repo = artifactory.FederatedCargoRepository("federated-test-cargo-repo", key="federated-test-cargo-repo")
import * as pulumi from "@pulumi/pulumi";
import * as artifactory from "@pulumi/artifactory";

const federated_test_cargo_repo = new artifactory.FederatedCargoRepository("federated-test-cargo-repo", {key: "federated-test-cargo-repo"});
resources:
  federated-test-cargo-repo:
    type: artifactory:FederatedCargoRepository
    properties:
      key: federated-test-cargo-repo

Using getFederatedCargoRepository

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 getFederatedCargoRepository(args: GetFederatedCargoRepositoryArgs, opts?: InvokeOptions): Promise<GetFederatedCargoRepositoryResult>
function getFederatedCargoRepositoryOutput(args: GetFederatedCargoRepositoryOutputArgs, opts?: InvokeOptions): Output<GetFederatedCargoRepositoryResult>
def get_federated_cargo_repository(anonymous_access: Optional[bool] = None,
                                   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,
                                   download_direct: Optional[bool] = None,
                                   enable_sparse_index: Optional[bool] = None,
                                   excludes_pattern: Optional[str] = None,
                                   includes_pattern: Optional[str] = None,
                                   index_compression_formats: Optional[Sequence[str]] = None,
                                   key: Optional[str] = None,
                                   members: Optional[Sequence[GetFederatedCargoRepositoryMember]] = 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,
                                   repo_layout_ref: Optional[str] = None,
                                   xray_index: Optional[bool] = None,
                                   opts: Optional[InvokeOptions] = None) -> GetFederatedCargoRepositoryResult
def get_federated_cargo_repository_output(anonymous_access: Optional[pulumi.Input[bool]] = None,
                                   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,
                                   download_direct: Optional[pulumi.Input[bool]] = None,
                                   enable_sparse_index: 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,
                                   members: Optional[pulumi.Input[Sequence[pulumi.Input[GetFederatedCargoRepositoryMemberArgs]]]] = 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,
                                   repo_layout_ref: Optional[pulumi.Input[str]] = None,
                                   xray_index: Optional[pulumi.Input[bool]] = None,
                                   opts: Optional[InvokeOptions] = None) -> Output[GetFederatedCargoRepositoryResult]
func LookupFederatedCargoRepository(ctx *Context, args *LookupFederatedCargoRepositoryArgs, opts ...InvokeOption) (*LookupFederatedCargoRepositoryResult, error)
func LookupFederatedCargoRepositoryOutput(ctx *Context, args *LookupFederatedCargoRepositoryOutputArgs, opts ...InvokeOption) LookupFederatedCargoRepositoryResultOutput

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

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

The following arguments are supported:

Key string

the identity key of the repo.

AnonymousAccess bool
ArchiveBrowsingEnabled bool
BlackedOut bool
CdnRedirect bool
CleanupOnDelete bool
Description string
DownloadDirect bool
EnableSparseIndex bool
ExcludesPattern string
IncludesPattern string
IndexCompressionFormats List<string>
Members List<GetFederatedCargoRepositoryMember>

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>
RepoLayoutRef string
XrayIndex bool
Key string

the identity key of the repo.

AnonymousAccess bool
ArchiveBrowsingEnabled bool
BlackedOut bool
CdnRedirect bool
CleanupOnDelete bool
Description string
DownloadDirect bool
EnableSparseIndex bool
ExcludesPattern string
IncludesPattern string
IndexCompressionFormats []string
Members []GetFederatedCargoRepositoryMember

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
RepoLayoutRef string
XrayIndex bool
key String

the identity key of the repo.

anonymousAccess Boolean
archiveBrowsingEnabled Boolean
blackedOut Boolean
cdnRedirect Boolean
cleanupOnDelete Boolean
description String
downloadDirect Boolean
enableSparseIndex Boolean
excludesPattern String
includesPattern String
indexCompressionFormats List<String>
members List<GetFederatedCargoRepositoryMember>

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>
repoLayoutRef String
xrayIndex Boolean
key string

the identity key of the repo.

anonymousAccess boolean
archiveBrowsingEnabled boolean
blackedOut boolean
cdnRedirect boolean
cleanupOnDelete boolean
description string
downloadDirect boolean
enableSparseIndex boolean
excludesPattern string
includesPattern string
indexCompressionFormats string[]
members GetFederatedCargoRepositoryMember[]

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[]
repoLayoutRef string
xrayIndex boolean
key str

the identity key of the repo.

anonymous_access bool
archive_browsing_enabled bool
blacked_out bool
cdn_redirect bool
cleanup_on_delete bool
description str
download_direct bool
enable_sparse_index bool
excludes_pattern str
includes_pattern str
index_compression_formats Sequence[str]
members Sequence[GetFederatedCargoRepositoryMember]

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]
repo_layout_ref str
xray_index bool
key String

the identity key of the repo.

anonymousAccess Boolean
archiveBrowsingEnabled Boolean
blackedOut Boolean
cdnRedirect Boolean
cleanupOnDelete Boolean
description String
downloadDirect Boolean
enableSparseIndex Boolean
excludesPattern String
includesPattern String
indexCompressionFormats List<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
projectEnvironments List<String>
projectKey String
propertySets List<String>
repoLayoutRef String
xrayIndex Boolean

getFederatedCargoRepository Result

The following output properties are available:

ExcludesPattern string
Id string

The provider-assigned unique ID for this managed resource.

IncludesPattern string
Key string
PackageType string
ProjectEnvironments List<string>
AnonymousAccess bool
ArchiveBrowsingEnabled bool
BlackedOut bool
CdnRedirect bool
CleanupOnDelete bool
Description string
DownloadDirect bool
EnableSparseIndex bool
IndexCompressionFormats List<string>
Members List<GetFederatedCargoRepositoryMember>

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>
RepoLayoutRef string
XrayIndex bool
ExcludesPattern string
Id string

The provider-assigned unique ID for this managed resource.

IncludesPattern string
Key string
PackageType string
ProjectEnvironments []string
AnonymousAccess bool
ArchiveBrowsingEnabled bool
BlackedOut bool
CdnRedirect bool
CleanupOnDelete bool
Description string
DownloadDirect bool
EnableSparseIndex bool
IndexCompressionFormats []string
Members []GetFederatedCargoRepositoryMember

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
RepoLayoutRef string
XrayIndex bool
excludesPattern String
id String

The provider-assigned unique ID for this managed resource.

includesPattern String
key String
packageType String
projectEnvironments List<String>
anonymousAccess Boolean
archiveBrowsingEnabled Boolean
blackedOut Boolean
cdnRedirect Boolean
cleanupOnDelete Boolean
description String
downloadDirect Boolean
enableSparseIndex Boolean
indexCompressionFormats List<String>
members List<GetFederatedCargoRepositoryMember>

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>
repoLayoutRef String
xrayIndex Boolean
excludesPattern string
id string

The provider-assigned unique ID for this managed resource.

includesPattern string
key string
packageType string
projectEnvironments string[]
anonymousAccess boolean
archiveBrowsingEnabled boolean
blackedOut boolean
cdnRedirect boolean
cleanupOnDelete boolean
description string
downloadDirect boolean
enableSparseIndex boolean
indexCompressionFormats string[]
members GetFederatedCargoRepositoryMember[]

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[]
repoLayoutRef string
xrayIndex boolean
excludes_pattern str
id str

The provider-assigned unique ID for this managed resource.

includes_pattern str
key str
package_type str
project_environments Sequence[str]
anonymous_access bool
archive_browsing_enabled bool
blacked_out bool
cdn_redirect bool
cleanup_on_delete bool
description str
download_direct bool
enable_sparse_index bool
index_compression_formats Sequence[str]
members Sequence[GetFederatedCargoRepositoryMember]

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]
repo_layout_ref str
xray_index bool
excludesPattern String
id String

The provider-assigned unique ID for this managed resource.

includesPattern String
key String
packageType String
projectEnvironments List<String>
anonymousAccess Boolean
archiveBrowsingEnabled Boolean
blackedOut Boolean
cdnRedirect Boolean
cleanupOnDelete Boolean
description String
downloadDirect Boolean
enableSparseIndex Boolean
indexCompressionFormats List<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>
repoLayoutRef String
xrayIndex Boolean

Supporting Types

GetFederatedCargoRepositoryMember

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.