artifactory v8.4.0 published on Tuesday, Nov 19, 2024 by Pulumi
artifactory.getFederatedRpmRepository
Explore with Pulumi AI
Retrieves a federated Rpm repository.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as artifactory from "@pulumi/artifactory";
const federated-test-rpm-repo = artifactory.getFederatedRpmRepository({
key: "federated-test-rpm-repo",
});
import pulumi
import pulumi_artifactory as artifactory
federated_test_rpm_repo = artifactory.get_federated_rpm_repository(key="federated-test-rpm-repo")
package main
import (
"github.com/pulumi/pulumi-artifactory/sdk/v8/go/artifactory"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := artifactory.LookupFederatedRpmRepository(ctx, &artifactory.LookupFederatedRpmRepositoryArgs{
Key: "federated-test-rpm-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_rpm_repo = Artifactory.GetFederatedRpmRepository.Invoke(new()
{
Key = "federated-test-rpm-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.GetFederatedRpmRepositoryArgs;
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-rpm-repo = ArtifactoryFunctions.getFederatedRpmRepository(GetFederatedRpmRepositoryArgs.builder()
.key("federated-test-rpm-repo")
.build());
}
}
variables:
federated-test-rpm-repo:
fn::invoke:
Function: artifactory:getFederatedRpmRepository
Arguments:
key: federated-test-rpm-repo
Using getFederatedRpmRepository
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 getFederatedRpmRepository(args: GetFederatedRpmRepositoryArgs, opts?: InvokeOptions): Promise<GetFederatedRpmRepositoryResult>
function getFederatedRpmRepositoryOutput(args: GetFederatedRpmRepositoryOutputArgs, opts?: InvokeOptions): Output<GetFederatedRpmRepositoryResult>
def get_federated_rpm_repository(archive_browsing_enabled: Optional[bool] = None,
blacked_out: Optional[bool] = None,
calculate_yum_metadata: 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,
enable_file_lists_indexing: Optional[bool] = None,
excludes_pattern: Optional[str] = None,
includes_pattern: Optional[str] = None,
key: Optional[str] = None,
members: Optional[Sequence[GetFederatedRpmRepositoryMember]] = 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,
proxy: Optional[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) -> GetFederatedRpmRepositoryResult
def get_federated_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,
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,
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,
members: Optional[pulumi.Input[Sequence[pulumi.Input[GetFederatedRpmRepositoryMemberArgs]]]] = 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,
proxy: Optional[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[GetFederatedRpmRepositoryResult]
func LookupFederatedRpmRepository(ctx *Context, args *LookupFederatedRpmRepositoryArgs, opts ...InvokeOption) (*LookupFederatedRpmRepositoryResult, error)
func LookupFederatedRpmRepositoryOutput(ctx *Context, args *LookupFederatedRpmRepositoryOutputArgs, opts ...InvokeOption) LookupFederatedRpmRepositoryResultOutput
> Note: This function is named LookupFederatedRpmRepository
in the Go SDK.
public static class GetFederatedRpmRepository
{
public static Task<GetFederatedRpmRepositoryResult> InvokeAsync(GetFederatedRpmRepositoryArgs args, InvokeOptions? opts = null)
public static Output<GetFederatedRpmRepositoryResult> Invoke(GetFederatedRpmRepositoryInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetFederatedRpmRepositoryResult> getFederatedRpmRepository(GetFederatedRpmRepositoryArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: artifactory:index/getFederatedRpmRepository:getFederatedRpmRepository
arguments:
# arguments dictionary
The following arguments are supported:
- Key string
- the identity key of the repo.
- Archive
Browsing boolEnabled - Blacked
Out bool - Calculate
Yum boolMetadata - Cdn
Redirect bool - Cleanup
On boolDelete - Description string
- 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 - Enable
File boolLists Indexing - Excludes
Pattern string - Includes
Pattern string - Members
List<Get
Federated Rpm Repository Member> - The list of Federated members and must contain this repository URL (configured base URL
/artifactory/
+ repokey
). 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
- Primary
Keypair stringRef - Priority
Resolution bool - Project
Environments List<string> - Project
Key string - Property
Sets List<string> - Proxy string
- Proxy key from Artifactory Proxies settings.
- Repo
Layout stringRef - Secondary
Keypair stringRef - Xray
Index bool - Yum
Group stringFile Names - Yum
Root intDepth
- Key string
- the identity key of the repo.
- Archive
Browsing boolEnabled - Blacked
Out bool - Calculate
Yum boolMetadata - Cdn
Redirect bool - Cleanup
On boolDelete - Description string
- 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 - Enable
File boolLists Indexing - Excludes
Pattern string - Includes
Pattern string - Members
[]Get
Federated Rpm Repository Member - The list of Federated members and must contain this repository URL (configured base URL
/artifactory/
+ repokey
). 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
- Primary
Keypair stringRef - Priority
Resolution bool - Project
Environments []string - Project
Key string - Property
Sets []string - Proxy string
- Proxy key from Artifactory Proxies settings.
- Repo
Layout stringRef - Secondary
Keypair stringRef - Xray
Index bool - Yum
Group stringFile Names - Yum
Root intDepth
- key String
- the identity key of the repo.
- archive
Browsing BooleanEnabled - blacked
Out Boolean - calculate
Yum BooleanMetadata - cdn
Redirect Boolean - cleanup
On BooleanDelete - description String
- disable
Proxy 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. - download
Direct Boolean - enable
File BooleanLists Indexing - excludes
Pattern String - includes
Pattern String - members
List<Get
Federated Rpm Repository Member> - The list of Federated members and must contain this repository URL (configured base URL
/artifactory/
+ repokey
). 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
- primary
Keypair StringRef - priority
Resolution Boolean - project
Environments List<String> - project
Key String - property
Sets List<String> - proxy String
- Proxy key from Artifactory Proxies settings.
- repo
Layout StringRef - secondary
Keypair StringRef - xray
Index Boolean - yum
Group StringFile Names - yum
Root IntegerDepth
- key string
- the identity key of the repo.
- archive
Browsing booleanEnabled - blacked
Out boolean - calculate
Yum booleanMetadata - cdn
Redirect boolean - cleanup
On booleanDelete - description string
- disable
Proxy 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. - download
Direct boolean - enable
File booleanLists Indexing - excludes
Pattern string - includes
Pattern string - members
Get
Federated Rpm Repository Member[] - The list of Federated members and must contain this repository URL (configured base URL
/artifactory/
+ repokey
). 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
- primary
Keypair stringRef - priority
Resolution boolean - project
Environments string[] - project
Key string - property
Sets string[] - proxy string
- Proxy key from Artifactory Proxies settings.
- repo
Layout stringRef - secondary
Keypair stringRef - xray
Index boolean - yum
Group stringFile Names - yum
Root numberDepth
- key str
- the identity key of the repo.
- archive_
browsing_ boolenabled - blacked_
out bool - calculate_
yum_ boolmetadata - cdn_
redirect bool - cleanup_
on_ booldelete - 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 - enable_
file_ boollists_ indexing - excludes_
pattern str - includes_
pattern str - members
Sequence[Get
Federated Rpm Repository Member] - The list of Federated members and must contain this repository URL (configured base URL
/artifactory/
+ repokey
). 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
- primary_
keypair_ strref - priority_
resolution bool - project_
environments Sequence[str] - project_
key str - property_
sets Sequence[str] - proxy str
- Proxy key from Artifactory Proxies settings.
- repo_
layout_ strref - secondary_
keypair_ strref - xray_
index bool - yum_
group_ strfile_ names - yum_
root_ intdepth
- key String
- the identity key of the repo.
- archive
Browsing BooleanEnabled - blacked
Out Boolean - calculate
Yum BooleanMetadata - cdn
Redirect Boolean - cleanup
On BooleanDelete - description String
- disable
Proxy 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. - download
Direct Boolean - enable
File BooleanLists Indexing - excludes
Pattern String - includes
Pattern String - members List<Property Map>
- The list of Federated members and must contain this repository URL (configured base URL
/artifactory/
+ repokey
). 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
- primary
Keypair StringRef - priority
Resolution Boolean - project
Environments List<String> - project
Key String - property
Sets List<String> - proxy String
- Proxy key from Artifactory Proxies settings.
- repo
Layout StringRef - secondary
Keypair StringRef - xray
Index Boolean - yum
Group StringFile Names - yum
Root NumberDepth
getFederatedRpmRepository Result
The following output properties are available:
- Id string
- The provider-assigned unique ID for this managed resource.
- Key string
- Package
Type string - Project
Environments List<string> - Archive
Browsing boolEnabled - Blacked
Out bool - Calculate
Yum boolMetadata - Cdn
Redirect bool - Cleanup
On boolDelete - Description string
- 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 - Enable
File boolLists Indexing - Excludes
Pattern string - Includes
Pattern string - Members
List<Get
Federated Rpm Repository Member> - The list of Federated members and must contain this repository URL (configured base URL
/artifactory/
+ repokey
). 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
- Primary
Keypair stringRef - Priority
Resolution bool - Project
Key string - Property
Sets List<string> - Proxy string
- Proxy key from Artifactory Proxies settings.
- Repo
Layout stringRef - Secondary
Keypair stringRef - Xray
Index bool - Yum
Group stringFile Names - Yum
Root intDepth
- Id string
- The provider-assigned unique ID for this managed resource.
- Key string
- Package
Type string - Project
Environments []string - Archive
Browsing boolEnabled - Blacked
Out bool - Calculate
Yum boolMetadata - Cdn
Redirect bool - Cleanup
On boolDelete - Description string
- 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 - Enable
File boolLists Indexing - Excludes
Pattern string - Includes
Pattern string - Members
[]Get
Federated Rpm Repository Member - The list of Federated members and must contain this repository URL (configured base URL
/artifactory/
+ repokey
). 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
- Primary
Keypair stringRef - Priority
Resolution bool - Project
Key string - Property
Sets []string - Proxy string
- Proxy key from Artifactory Proxies settings.
- Repo
Layout stringRef - Secondary
Keypair stringRef - Xray
Index bool - Yum
Group stringFile Names - Yum
Root intDepth
- id String
- The provider-assigned unique ID for this managed resource.
- key String
- package
Type String - project
Environments List<String> - archive
Browsing BooleanEnabled - blacked
Out Boolean - calculate
Yum BooleanMetadata - cdn
Redirect Boolean - cleanup
On BooleanDelete - description String
- disable
Proxy 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. - download
Direct Boolean - enable
File BooleanLists Indexing - excludes
Pattern String - includes
Pattern String - members
List<Get
Federated Rpm Repository Member> - The list of Federated members and must contain this repository URL (configured base URL
/artifactory/
+ repokey
). 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
- primary
Keypair StringRef - priority
Resolution Boolean - project
Key String - property
Sets List<String> - proxy String
- Proxy key from Artifactory Proxies settings.
- repo
Layout StringRef - secondary
Keypair StringRef - xray
Index Boolean - yum
Group StringFile Names - yum
Root IntegerDepth
- id string
- The provider-assigned unique ID for this managed resource.
- key string
- package
Type string - project
Environments string[] - archive
Browsing booleanEnabled - blacked
Out boolean - calculate
Yum booleanMetadata - cdn
Redirect boolean - cleanup
On booleanDelete - description string
- disable
Proxy 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. - download
Direct boolean - enable
File booleanLists Indexing - excludes
Pattern string - includes
Pattern string - members
Get
Federated Rpm Repository Member[] - The list of Federated members and must contain this repository URL (configured base URL
/artifactory/
+ repokey
). 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
- primary
Keypair stringRef - priority
Resolution boolean - project
Key string - property
Sets string[] - proxy string
- Proxy key from Artifactory Proxies settings.
- repo
Layout stringRef - secondary
Keypair stringRef - xray
Index boolean - yum
Group stringFile Names - yum
Root numberDepth
- id str
- The provider-assigned unique ID for this managed resource.
- key str
- package_
type str - project_
environments Sequence[str] - archive_
browsing_ boolenabled - blacked_
out bool - calculate_
yum_ boolmetadata - cdn_
redirect bool - cleanup_
on_ booldelete - 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 - enable_
file_ boollists_ indexing - excludes_
pattern str - includes_
pattern str - members
Sequence[Get
Federated Rpm Repository Member] - The list of Federated members and must contain this repository URL (configured base URL
/artifactory/
+ repokey
). 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
- primary_
keypair_ strref - priority_
resolution bool - project_
key str - property_
sets Sequence[str] - proxy str
- Proxy key from Artifactory Proxies settings.
- repo_
layout_ strref - secondary_
keypair_ strref - xray_
index bool - yum_
group_ strfile_ names - yum_
root_ intdepth
- id String
- The provider-assigned unique ID for this managed resource.
- key String
- package
Type String - project
Environments List<String> - archive
Browsing BooleanEnabled - blacked
Out Boolean - calculate
Yum BooleanMetadata - cdn
Redirect Boolean - cleanup
On BooleanDelete - description String
- disable
Proxy 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. - download
Direct Boolean - enable
File BooleanLists Indexing - excludes
Pattern String - includes
Pattern String - members List<Property Map>
- The list of Federated members and must contain this repository URL (configured base URL
/artifactory/
+ repokey
). 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
- primary
Keypair StringRef - priority
Resolution Boolean - project
Key String - property
Sets List<String> - proxy String
- Proxy key from Artifactory Proxies settings.
- repo
Layout StringRef - secondary
Keypair StringRef - xray
Index Boolean - yum
Group StringFile Names - yum
Root NumberDepth
Supporting Types
GetFederatedRpmRepositoryMember
- 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.
- Access
Token string - Admin access token for this member Artifactory instance. Used in conjunction with
cleanup_on_delete
attribute when Access Federation for access tokens is not enabled.
- 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.
- Access
Token string - Admin access token for this member Artifactory instance. Used in conjunction with
cleanup_on_delete
attribute when Access Federation for access tokens is not enabled.
- 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.
- access
Token String - Admin access token for this member Artifactory instance. Used in conjunction with
cleanup_on_delete
attribute when Access Federation for access tokens is not enabled.
- 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.
- access
Token string - Admin access token for this member Artifactory instance. Used in conjunction with
cleanup_on_delete
attribute when Access Federation for access tokens is not enabled.
- 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.
- access_
token str - Admin access token for this member Artifactory instance. Used in conjunction with
cleanup_on_delete
attribute when Access Federation for access tokens is not enabled.
- 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.
- access
Token String - Admin access token for this member Artifactory instance. Used in conjunction with
cleanup_on_delete
attribute when Access Federation for access tokens is not enabled.
Package Details
- Repository
- artifactory pulumi/pulumi-artifactory
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
artifactory
Terraform Provider.