nexus 2.5.0 published on Monday, Apr 14, 2025 by datadrivers
nexus.getRepositoryMavenGroup
Explore with Pulumi AI
Use this data source to get an existing maven group repository.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as nexus from "@pulumi/nexus";
const mavenPublic = nexus.getRepositoryMavenGroup({
name: "maven-public",
});
import pulumi
import pulumi_nexus as nexus
maven_public = nexus.get_repository_maven_group(name="maven-public")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/nexus/v2/nexus"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := nexus.LookupRepositoryMavenGroup(ctx, &nexus.LookupRepositoryMavenGroupArgs{
Name: "maven-public",
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Nexus = Pulumi.Nexus;
return await Deployment.RunAsync(() =>
{
var mavenPublic = Nexus.GetRepositoryMavenGroup.Invoke(new()
{
Name = "maven-public",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.nexus.NexusFunctions;
import com.pulumi.nexus.inputs.GetRepositoryMavenGroupArgs;
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 mavenPublic = NexusFunctions.getRepositoryMavenGroup(GetRepositoryMavenGroupArgs.builder()
.name("maven-public")
.build());
}
}
variables:
mavenPublic:
fn::invoke:
function: nexus:getRepositoryMavenGroup
arguments:
name: maven-public
Using getRepositoryMavenGroup
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 getRepositoryMavenGroup(args: GetRepositoryMavenGroupArgs, opts?: InvokeOptions): Promise<GetRepositoryMavenGroupResult>
function getRepositoryMavenGroupOutput(args: GetRepositoryMavenGroupOutputArgs, opts?: InvokeOptions): Output<GetRepositoryMavenGroupResult>
def get_repository_maven_group(name: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetRepositoryMavenGroupResult
def get_repository_maven_group_output(name: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetRepositoryMavenGroupResult]
func LookupRepositoryMavenGroup(ctx *Context, args *LookupRepositoryMavenGroupArgs, opts ...InvokeOption) (*LookupRepositoryMavenGroupResult, error)
func LookupRepositoryMavenGroupOutput(ctx *Context, args *LookupRepositoryMavenGroupOutputArgs, opts ...InvokeOption) LookupRepositoryMavenGroupResultOutput
> Note: This function is named LookupRepositoryMavenGroup
in the Go SDK.
public static class GetRepositoryMavenGroup
{
public static Task<GetRepositoryMavenGroupResult> InvokeAsync(GetRepositoryMavenGroupArgs args, InvokeOptions? opts = null)
public static Output<GetRepositoryMavenGroupResult> Invoke(GetRepositoryMavenGroupInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetRepositoryMavenGroupResult> getRepositoryMavenGroup(GetRepositoryMavenGroupArgs args, InvokeOptions options)
public static Output<GetRepositoryMavenGroupResult> getRepositoryMavenGroup(GetRepositoryMavenGroupArgs args, InvokeOptions options)
fn::invoke:
function: nexus:index/getRepositoryMavenGroup:getRepositoryMavenGroup
arguments:
# arguments dictionary
The following arguments are supported:
- Name string
- A unique identifier for this repository
- Name string
- A unique identifier for this repository
- name String
- A unique identifier for this repository
- name string
- A unique identifier for this repository
- name str
- A unique identifier for this repository
- name String
- A unique identifier for this repository
getRepositoryMavenGroup Result
The following output properties are available:
- Groups
List<Get
Repository Maven Group Group> - Configuration for repository group
- Id string
- Used to identify data source at nexus
- Name string
- A unique identifier for this repository
- Online bool
- Whether this repository accepts incoming requests
- Storages
List<Get
Repository Maven Group Storage> - The storage configuration of the repository
- Groups
[]Get
Repository Maven Group Group - Configuration for repository group
- Id string
- Used to identify data source at nexus
- Name string
- A unique identifier for this repository
- Online bool
- Whether this repository accepts incoming requests
- Storages
[]Get
Repository Maven Group Storage - The storage configuration of the repository
- groups
List<Get
Repository Maven Group Group> - Configuration for repository group
- id String
- Used to identify data source at nexus
- name String
- A unique identifier for this repository
- online Boolean
- Whether this repository accepts incoming requests
- storages
List<Get
Repository Maven Group Storage> - The storage configuration of the repository
- groups
Get
Repository Maven Group Group[] - Configuration for repository group
- id string
- Used to identify data source at nexus
- name string
- A unique identifier for this repository
- online boolean
- Whether this repository accepts incoming requests
- storages
Get
Repository Maven Group Storage[] - The storage configuration of the repository
- groups
Sequence[Get
Repository Maven Group Group] - Configuration for repository group
- id str
- Used to identify data source at nexus
- name str
- A unique identifier for this repository
- online bool
- Whether this repository accepts incoming requests
- storages
Sequence[Get
Repository Maven Group Storage] - The storage configuration of the repository
- groups List<Property Map>
- Configuration for repository group
- id String
- Used to identify data source at nexus
- name String
- A unique identifier for this repository
- online Boolean
- Whether this repository accepts incoming requests
- storages List<Property Map>
- The storage configuration of the repository
Supporting Types
GetRepositoryMavenGroupGroup
- Member
Names List<string>
- Member
Names []string
- member
Names List<String>
- member
Names string[]
- member_
names Sequence[str]
- member
Names List<String>
GetRepositoryMavenGroupStorage
- Blob
Store stringName - Strict
Content boolType Validation
- Blob
Store stringName - Strict
Content boolType Validation
- blob
Store StringName - strict
Content BooleanType Validation
- blob
Store stringName - strict
Content booleanType Validation
- blob
Store StringName - strict
Content BooleanType Validation
Package Details
- Repository
- nexus datadrivers/terraform-provider-nexus
- License
- Notes
- This Pulumi package is based on the
nexus
Terraform Provider.