1. Packages
  2. Nexus Provider
  3. API Docs
  4. RepositoryRawGroup
nexus 2.5.0 published on Monday, Apr 14, 2025 by datadrivers

nexus.RepositoryRawGroup

Explore with Pulumi AI

nexus logo
nexus 2.5.0 published on Monday, Apr 14, 2025 by datadrivers

    Use this resource to create a group raw repository.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as nexus from "@pulumi/nexus";
    
    const internal = new nexus.RepositoryRawHosted("internal", {
        online: true,
        storage: {
            blobStoreName: "default",
            strictContentTypeValidation: false,
            writePolicy: "ALLOW",
        },
    });
    const group = new nexus.RepositoryRawGroup("group", {
        online: true,
        group: {
            memberNames: [internal.name],
        },
        storage: {
            blobStoreName: "default",
            strictContentTypeValidation: true,
        },
    });
    
    import pulumi
    import pulumi_nexus as nexus
    
    internal = nexus.RepositoryRawHosted("internal",
        online=True,
        storage={
            "blob_store_name": "default",
            "strict_content_type_validation": False,
            "write_policy": "ALLOW",
        })
    group = nexus.RepositoryRawGroup("group",
        online=True,
        group={
            "member_names": [internal.name],
        },
        storage={
            "blob_store_name": "default",
            "strict_content_type_validation": True,
        })
    
    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 {
    		internal, err := nexus.NewRepositoryRawHosted(ctx, "internal", &nexus.RepositoryRawHostedArgs{
    			Online: pulumi.Bool(true),
    			Storage: &nexus.RepositoryRawHostedStorageArgs{
    				BlobStoreName:               pulumi.String("default"),
    				StrictContentTypeValidation: pulumi.Bool(false),
    				WritePolicy:                 pulumi.String("ALLOW"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		_, err = nexus.NewRepositoryRawGroup(ctx, "group", &nexus.RepositoryRawGroupArgs{
    			Online: pulumi.Bool(true),
    			Group: &nexus.RepositoryRawGroupGroupArgs{
    				MemberNames: pulumi.StringArray{
    					internal.Name,
    				},
    			},
    			Storage: &nexus.RepositoryRawGroupStorageArgs{
    				BlobStoreName:               pulumi.String("default"),
    				StrictContentTypeValidation: pulumi.Bool(true),
    			},
    		})
    		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 @internal = new Nexus.RepositoryRawHosted("internal", new()
        {
            Online = true,
            Storage = new Nexus.Inputs.RepositoryRawHostedStorageArgs
            {
                BlobStoreName = "default",
                StrictContentTypeValidation = false,
                WritePolicy = "ALLOW",
            },
        });
    
        var @group = new Nexus.RepositoryRawGroup("group", new()
        {
            Online = true,
            Group = new Nexus.Inputs.RepositoryRawGroupGroupArgs
            {
                MemberNames = new[]
                {
                    @internal.Name,
                },
            },
            Storage = new Nexus.Inputs.RepositoryRawGroupStorageArgs
            {
                BlobStoreName = "default",
                StrictContentTypeValidation = true,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.nexus.RepositoryRawHosted;
    import com.pulumi.nexus.RepositoryRawHostedArgs;
    import com.pulumi.nexus.inputs.RepositoryRawHostedStorageArgs;
    import com.pulumi.nexus.RepositoryRawGroup;
    import com.pulumi.nexus.RepositoryRawGroupArgs;
    import com.pulumi.nexus.inputs.RepositoryRawGroupGroupArgs;
    import com.pulumi.nexus.inputs.RepositoryRawGroupStorageArgs;
    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 internal = new RepositoryRawHosted("internal", RepositoryRawHostedArgs.builder()
                .online(true)
                .storage(RepositoryRawHostedStorageArgs.builder()
                    .blobStoreName("default")
                    .strictContentTypeValidation(false)
                    .writePolicy("ALLOW")
                    .build())
                .build());
    
            var group = new RepositoryRawGroup("group", RepositoryRawGroupArgs.builder()
                .online(true)
                .group(RepositoryRawGroupGroupArgs.builder()
                    .memberNames(internal.name())
                    .build())
                .storage(RepositoryRawGroupStorageArgs.builder()
                    .blobStoreName("default")
                    .strictContentTypeValidation(true)
                    .build())
                .build());
    
        }
    }
    
    resources:
      internal:
        type: nexus:RepositoryRawHosted
        properties:
          online: true
          storage:
            blobStoreName: default
            strictContentTypeValidation: false
            writePolicy: ALLOW
      group:
        type: nexus:RepositoryRawGroup
        properties:
          online: true
          group:
            memberNames:
              - ${internal.name}
          storage:
            blobStoreName: default
            strictContentTypeValidation: true
    

    Create RepositoryRawGroup Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new RepositoryRawGroup(name: string, args: RepositoryRawGroupArgs, opts?: CustomResourceOptions);
    @overload
    def RepositoryRawGroup(resource_name: str,
                           args: RepositoryRawGroupArgs,
                           opts: Optional[ResourceOptions] = None)
    
    @overload
    def RepositoryRawGroup(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           group: Optional[RepositoryRawGroupGroupArgs] = None,
                           storage: Optional[RepositoryRawGroupStorageArgs] = None,
                           name: Optional[str] = None,
                           online: Optional[bool] = None)
    func NewRepositoryRawGroup(ctx *Context, name string, args RepositoryRawGroupArgs, opts ...ResourceOption) (*RepositoryRawGroup, error)
    public RepositoryRawGroup(string name, RepositoryRawGroupArgs args, CustomResourceOptions? opts = null)
    public RepositoryRawGroup(String name, RepositoryRawGroupArgs args)
    public RepositoryRawGroup(String name, RepositoryRawGroupArgs args, CustomResourceOptions options)
    
    type: nexus:RepositoryRawGroup
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args RepositoryRawGroupArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args RepositoryRawGroupArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args RepositoryRawGroupArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args RepositoryRawGroupArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args RepositoryRawGroupArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var repositoryRawGroupResource = new Nexus.RepositoryRawGroup("repositoryRawGroupResource", new()
    {
        Group = new Nexus.Inputs.RepositoryRawGroupGroupArgs
        {
            MemberNames = new[]
            {
                "string",
            },
        },
        Storage = new Nexus.Inputs.RepositoryRawGroupStorageArgs
        {
            BlobStoreName = "string",
            StrictContentTypeValidation = false,
        },
        Name = "string",
        Online = false,
    });
    
    example, err := nexus.NewRepositoryRawGroup(ctx, "repositoryRawGroupResource", &nexus.RepositoryRawGroupArgs{
    	Group: &nexus.RepositoryRawGroupGroupArgs{
    		MemberNames: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    	},
    	Storage: &nexus.RepositoryRawGroupStorageArgs{
    		BlobStoreName:               pulumi.String("string"),
    		StrictContentTypeValidation: pulumi.Bool(false),
    	},
    	Name:   pulumi.String("string"),
    	Online: pulumi.Bool(false),
    })
    
    var repositoryRawGroupResource = new RepositoryRawGroup("repositoryRawGroupResource", RepositoryRawGroupArgs.builder()
        .group(RepositoryRawGroupGroupArgs.builder()
            .memberNames("string")
            .build())
        .storage(RepositoryRawGroupStorageArgs.builder()
            .blobStoreName("string")
            .strictContentTypeValidation(false)
            .build())
        .name("string")
        .online(false)
        .build());
    
    repository_raw_group_resource = nexus.RepositoryRawGroup("repositoryRawGroupResource",
        group={
            "member_names": ["string"],
        },
        storage={
            "blob_store_name": "string",
            "strict_content_type_validation": False,
        },
        name="string",
        online=False)
    
    const repositoryRawGroupResource = new nexus.RepositoryRawGroup("repositoryRawGroupResource", {
        group: {
            memberNames: ["string"],
        },
        storage: {
            blobStoreName: "string",
            strictContentTypeValidation: false,
        },
        name: "string",
        online: false,
    });
    
    type: nexus:RepositoryRawGroup
    properties:
        group:
            memberNames:
                - string
        name: string
        online: false
        storage:
            blobStoreName: string
            strictContentTypeValidation: false
    

    RepositoryRawGroup Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The RepositoryRawGroup resource accepts the following input properties:

    Group RepositoryRawGroupGroup
    Configuration for repository group
    Storage RepositoryRawGroupStorage
    The storage configuration of the repository
    Name string
    A unique identifier for this repository
    Online bool
    Whether this repository accepts incoming requests
    Group RepositoryRawGroupGroupArgs
    Configuration for repository group
    Storage RepositoryRawGroupStorageArgs
    The storage configuration of the repository
    Name string
    A unique identifier for this repository
    Online bool
    Whether this repository accepts incoming requests
    group RepositoryRawGroupGroup
    Configuration for repository group
    storage RepositoryRawGroupStorage
    The storage configuration of the repository
    name String
    A unique identifier for this repository
    online Boolean
    Whether this repository accepts incoming requests
    group RepositoryRawGroupGroup
    Configuration for repository group
    storage RepositoryRawGroupStorage
    The storage configuration of the repository
    name string
    A unique identifier for this repository
    online boolean
    Whether this repository accepts incoming requests
    group RepositoryRawGroupGroupArgs
    Configuration for repository group
    storage RepositoryRawGroupStorageArgs
    The storage configuration of the repository
    name str
    A unique identifier for this repository
    online bool
    Whether this repository accepts incoming requests
    group Property Map
    Configuration for repository group
    storage Property Map
    The storage configuration of the repository
    name String
    A unique identifier for this repository
    online Boolean
    Whether this repository accepts incoming requests

    Outputs

    All input properties are implicitly available as output properties. Additionally, the RepositoryRawGroup resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing RepositoryRawGroup Resource

    Get an existing RepositoryRawGroup resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: RepositoryRawGroupState, opts?: CustomResourceOptions): RepositoryRawGroup
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            group: Optional[RepositoryRawGroupGroupArgs] = None,
            name: Optional[str] = None,
            online: Optional[bool] = None,
            storage: Optional[RepositoryRawGroupStorageArgs] = None) -> RepositoryRawGroup
    func GetRepositoryRawGroup(ctx *Context, name string, id IDInput, state *RepositoryRawGroupState, opts ...ResourceOption) (*RepositoryRawGroup, error)
    public static RepositoryRawGroup Get(string name, Input<string> id, RepositoryRawGroupState? state, CustomResourceOptions? opts = null)
    public static RepositoryRawGroup get(String name, Output<String> id, RepositoryRawGroupState state, CustomResourceOptions options)
    resources:  _:    type: nexus:RepositoryRawGroup    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Group RepositoryRawGroupGroup
    Configuration for repository group
    Name string
    A unique identifier for this repository
    Online bool
    Whether this repository accepts incoming requests
    Storage RepositoryRawGroupStorage
    The storage configuration of the repository
    Group RepositoryRawGroupGroupArgs
    Configuration for repository group
    Name string
    A unique identifier for this repository
    Online bool
    Whether this repository accepts incoming requests
    Storage RepositoryRawGroupStorageArgs
    The storage configuration of the repository
    group RepositoryRawGroupGroup
    Configuration for repository group
    name String
    A unique identifier for this repository
    online Boolean
    Whether this repository accepts incoming requests
    storage RepositoryRawGroupStorage
    The storage configuration of the repository
    group RepositoryRawGroupGroup
    Configuration for repository group
    name string
    A unique identifier for this repository
    online boolean
    Whether this repository accepts incoming requests
    storage RepositoryRawGroupStorage
    The storage configuration of the repository
    group RepositoryRawGroupGroupArgs
    Configuration for repository group
    name str
    A unique identifier for this repository
    online bool
    Whether this repository accepts incoming requests
    storage RepositoryRawGroupStorageArgs
    The storage configuration of the repository
    group Property Map
    Configuration for repository group
    name String
    A unique identifier for this repository
    online Boolean
    Whether this repository accepts incoming requests
    storage Property Map
    The storage configuration of the repository

    Supporting Types

    RepositoryRawGroupGroup, RepositoryRawGroupGroupArgs

    MemberNames List<string>
    Member repositories names
    MemberNames []string
    Member repositories names
    memberNames List<String>
    Member repositories names
    memberNames string[]
    Member repositories names
    member_names Sequence[str]
    Member repositories names
    memberNames List<String>
    Member repositories names

    RepositoryRawGroupStorage, RepositoryRawGroupStorageArgs

    BlobStoreName string
    Blob store used to store repository contents
    StrictContentTypeValidation bool
    Whether to validate uploaded content's MIME type appropriate for the repository format
    BlobStoreName string
    Blob store used to store repository contents
    StrictContentTypeValidation bool
    Whether to validate uploaded content's MIME type appropriate for the repository format
    blobStoreName String
    Blob store used to store repository contents
    strictContentTypeValidation Boolean
    Whether to validate uploaded content's MIME type appropriate for the repository format
    blobStoreName string
    Blob store used to store repository contents
    strictContentTypeValidation boolean
    Whether to validate uploaded content's MIME type appropriate for the repository format
    blob_store_name str
    Blob store used to store repository contents
    strict_content_type_validation bool
    Whether to validate uploaded content's MIME type appropriate for the repository format
    blobStoreName String
    Blob store used to store repository contents
    strictContentTypeValidation Boolean
    Whether to validate uploaded content's MIME type appropriate for the repository format

    Import

    import using the name of repository

    $ pulumi import nexus:index/repositoryRawGroup:RepositoryRawGroup group raw-group
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    nexus datadrivers/terraform-provider-nexus
    License
    Notes
    This Pulumi package is based on the nexus Terraform Provider.
    nexus logo
    nexus 2.5.0 published on Monday, Apr 14, 2025 by datadrivers