1. Packages
  2. Volcengine
  3. API Docs
  4. alb
  5. Acl
Volcengine v0.0.25 published on Tuesday, Jul 2, 2024 by Volcengine

volcengine.alb.Acl

Explore with Pulumi AI

volcengine logo
Volcengine v0.0.25 published on Tuesday, Jul 2, 2024 by Volcengine

    Provides a resource to manage alb acl

    Example Usage

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Volcengine = Pulumi.Volcengine;
    
    return await Deployment.RunAsync(() => 
    {
        var foo = new Volcengine.Alb.Acl("foo", new()
        {
            AclEntries = new[]
            {
                new Volcengine.Alb.Inputs.AclAclEntryArgs
                {
                    Description = "e1",
                    Entry = "172.20.1.0/24",
                },
                new Volcengine.Alb.Inputs.AclAclEntryArgs
                {
                    Description = "e2",
                    Entry = "172.20.3.0/24",
                },
            },
            AclName = "tf-test-1",
            Description = "tftest",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/volcengine/pulumi-volcengine/sdk/go/volcengine/alb"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := alb.NewAcl(ctx, "foo", &alb.AclArgs{
    			AclEntries: alb.AclAclEntryArray{
    				&alb.AclAclEntryArgs{
    					Description: pulumi.String("e1"),
    					Entry:       pulumi.String("172.20.1.0/24"),
    				},
    				&alb.AclAclEntryArgs{
    					Description: pulumi.String("e2"),
    					Entry:       pulumi.String("172.20.3.0/24"),
    				},
    			},
    			AclName:     pulumi.String("tf-test-1"),
    			Description: pulumi.String("tftest"),
    		})
    		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.volcengine.alb.Acl;
    import com.pulumi.volcengine.alb.AclArgs;
    import com.pulumi.volcengine.alb.inputs.AclAclEntryArgs;
    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 foo = new Acl("foo", AclArgs.builder()        
                .aclEntries(            
                    AclAclEntryArgs.builder()
                        .description("e1")
                        .entry("172.20.1.0/24")
                        .build(),
                    AclAclEntryArgs.builder()
                        .description("e2")
                        .entry("172.20.3.0/24")
                        .build())
                .aclName("tf-test-1")
                .description("tftest")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_volcengine as volcengine
    
    foo = volcengine.alb.Acl("foo",
        acl_entries=[
            volcengine.alb.AclAclEntryArgs(
                description="e1",
                entry="172.20.1.0/24",
            ),
            volcengine.alb.AclAclEntryArgs(
                description="e2",
                entry="172.20.3.0/24",
            ),
        ],
        acl_name="tf-test-1",
        description="tftest")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as volcengine from "@volcengine/pulumi";
    
    const foo = new volcengine.alb.Acl("foo", {
        aclEntries: [
            {
                description: "e1",
                entry: "172.20.1.0/24",
            },
            {
                description: "e2",
                entry: "172.20.3.0/24",
            },
        ],
        aclName: "tf-test-1",
        description: "tftest",
    });
    
    resources:
      foo:
        type: volcengine:alb:Acl
        properties:
          aclEntries:
            - description: e1
              entry: 172.20.1.0/24
            - description: e2
              entry: 172.20.3.0/24
          aclName: tf-test-1
          description: tftest
    

    Create Acl Resource

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

    Constructor syntax

    new Acl(name: string, args?: AclArgs, opts?: CustomResourceOptions);
    @overload
    def Acl(resource_name: str,
            args: Optional[AclArgs] = None,
            opts: Optional[ResourceOptions] = None)
    
    @overload
    def Acl(resource_name: str,
            opts: Optional[ResourceOptions] = None,
            acl_entries: Optional[Sequence[AclAclEntryArgs]] = None,
            acl_name: Optional[str] = None,
            description: Optional[str] = None,
            project_name: Optional[str] = None)
    func NewAcl(ctx *Context, name string, args *AclArgs, opts ...ResourceOption) (*Acl, error)
    public Acl(string name, AclArgs? args = null, CustomResourceOptions? opts = null)
    public Acl(String name, AclArgs args)
    public Acl(String name, AclArgs args, CustomResourceOptions options)
    
    type: volcengine:alb:Acl
    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 AclArgs
    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 AclArgs
    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 AclArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AclArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AclArgs
    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 aclResource = new Volcengine.Alb.Acl("aclResource", new()
    {
        AclEntries = new[]
        {
            new Volcengine.Alb.Inputs.AclAclEntryArgs
            {
                Entry = "string",
                Description = "string",
            },
        },
        AclName = "string",
        Description = "string",
        ProjectName = "string",
    });
    
    example, err := alb.NewAcl(ctx, "aclResource", &alb.AclArgs{
    	AclEntries: alb.AclAclEntryArray{
    		&alb.AclAclEntryArgs{
    			Entry:       pulumi.String("string"),
    			Description: pulumi.String("string"),
    		},
    	},
    	AclName:     pulumi.String("string"),
    	Description: pulumi.String("string"),
    	ProjectName: pulumi.String("string"),
    })
    
    var aclResource = new Acl("aclResource", AclArgs.builder()
        .aclEntries(AclAclEntryArgs.builder()
            .entry("string")
            .description("string")
            .build())
        .aclName("string")
        .description("string")
        .projectName("string")
        .build());
    
    acl_resource = volcengine.alb.Acl("aclResource",
        acl_entries=[volcengine.alb.AclAclEntryArgs(
            entry="string",
            description="string",
        )],
        acl_name="string",
        description="string",
        project_name="string")
    
    const aclResource = new volcengine.alb.Acl("aclResource", {
        aclEntries: [{
            entry: "string",
            description: "string",
        }],
        aclName: "string",
        description: "string",
        projectName: "string",
    });
    
    type: volcengine:alb:Acl
    properties:
        aclEntries:
            - description: string
              entry: string
        aclName: string
        description: string
        projectName: string
    

    Acl Resource Properties

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

    Inputs

    The Acl resource accepts the following input properties:

    AclEntries List<AclAclEntry>
    The acl entry set of the Acl.
    AclName string
    The name of Acl.
    Description string
    The description of the Acl.
    ProjectName string
    The project name of the Acl.
    AclEntries []AclAclEntryArgs
    The acl entry set of the Acl.
    AclName string
    The name of Acl.
    Description string
    The description of the Acl.
    ProjectName string
    The project name of the Acl.
    aclEntries List<AclAclEntry>
    The acl entry set of the Acl.
    aclName String
    The name of Acl.
    description String
    The description of the Acl.
    projectName String
    The project name of the Acl.
    aclEntries AclAclEntry[]
    The acl entry set of the Acl.
    aclName string
    The name of Acl.
    description string
    The description of the Acl.
    projectName string
    The project name of the Acl.
    acl_entries Sequence[AclAclEntryArgs]
    The acl entry set of the Acl.
    acl_name str
    The name of Acl.
    description str
    The description of the Acl.
    project_name str
    The project name of the Acl.
    aclEntries List<Property Map>
    The acl entry set of the Acl.
    aclName String
    The name of Acl.
    description String
    The description of the Acl.
    projectName String
    The project name of the Acl.

    Outputs

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

    CreateTime string
    Create time of Acl.
    Id string
    The provider-assigned unique ID for this managed resource.
    CreateTime string
    Create time of Acl.
    Id string
    The provider-assigned unique ID for this managed resource.
    createTime String
    Create time of Acl.
    id String
    The provider-assigned unique ID for this managed resource.
    createTime string
    Create time of Acl.
    id string
    The provider-assigned unique ID for this managed resource.
    create_time str
    Create time of Acl.
    id str
    The provider-assigned unique ID for this managed resource.
    createTime String
    Create time of Acl.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing Acl Resource

    Get an existing Acl 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?: AclState, opts?: CustomResourceOptions): Acl
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            acl_entries: Optional[Sequence[AclAclEntryArgs]] = None,
            acl_name: Optional[str] = None,
            create_time: Optional[str] = None,
            description: Optional[str] = None,
            project_name: Optional[str] = None) -> Acl
    func GetAcl(ctx *Context, name string, id IDInput, state *AclState, opts ...ResourceOption) (*Acl, error)
    public static Acl Get(string name, Input<string> id, AclState? state, CustomResourceOptions? opts = null)
    public static Acl get(String name, Output<String> id, AclState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    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:
    AclEntries List<AclAclEntry>
    The acl entry set of the Acl.
    AclName string
    The name of Acl.
    CreateTime string
    Create time of Acl.
    Description string
    The description of the Acl.
    ProjectName string
    The project name of the Acl.
    AclEntries []AclAclEntryArgs
    The acl entry set of the Acl.
    AclName string
    The name of Acl.
    CreateTime string
    Create time of Acl.
    Description string
    The description of the Acl.
    ProjectName string
    The project name of the Acl.
    aclEntries List<AclAclEntry>
    The acl entry set of the Acl.
    aclName String
    The name of Acl.
    createTime String
    Create time of Acl.
    description String
    The description of the Acl.
    projectName String
    The project name of the Acl.
    aclEntries AclAclEntry[]
    The acl entry set of the Acl.
    aclName string
    The name of Acl.
    createTime string
    Create time of Acl.
    description string
    The description of the Acl.
    projectName string
    The project name of the Acl.
    acl_entries Sequence[AclAclEntryArgs]
    The acl entry set of the Acl.
    acl_name str
    The name of Acl.
    create_time str
    Create time of Acl.
    description str
    The description of the Acl.
    project_name str
    The project name of the Acl.
    aclEntries List<Property Map>
    The acl entry set of the Acl.
    aclName String
    The name of Acl.
    createTime String
    Create time of Acl.
    description String
    The description of the Acl.
    projectName String
    The project name of the Acl.

    Supporting Types

    AclAclEntry, AclAclEntryArgs

    Entry string
    The content of the AclEntry.
    Description string
    The description of the AclEntry.
    Entry string
    The content of the AclEntry.
    Description string
    The description of the AclEntry.
    entry String
    The content of the AclEntry.
    description String
    The description of the AclEntry.
    entry string
    The content of the AclEntry.
    description string
    The description of the AclEntry.
    entry str
    The content of the AclEntry.
    description str
    The description of the AclEntry.
    entry String
    The content of the AclEntry.
    description String
    The description of the AclEntry.

    Import

    Acl can be imported using the id, e.g.

     $ pulumi import volcengine:alb/acl:Acl default acl-mizl7m1kqccg5smt1bdpijuj
    

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

    Package Details

    Repository
    volcengine volcengine/pulumi-volcengine
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the volcengine Terraform Provider.
    volcengine logo
    Volcengine v0.0.25 published on Tuesday, Jul 2, 2024 by Volcengine