1. Packages
  2. Alibaba Cloud
  3. API Docs
  4. alb
  5. getAcls
Alibaba Cloud v3.51.0 published on Saturday, Mar 23, 2024 by Pulumi

alicloud.alb.getAcls

Explore with Pulumi AI

alicloud logo
Alibaba Cloud v3.51.0 published on Saturday, Mar 23, 2024 by Pulumi

    This data source provides the Application Load Balancer (ALB) Acls of the current Alibaba Cloud user.

    NOTE: Available in v1.133.0+.

    Example Usage

    Basic Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as alicloud from "@pulumi/alicloud";
    
    const ids = alicloud.alb.getAcls({});
    export const albAclId1 = ids.then(ids => ids.acls?.[0]?.id);
    const nameRegex = alicloud.alb.getAcls({
        nameRegex: "^my-Acl",
    });
    export const albAclId2 = nameRegex.then(nameRegex => nameRegex.acls?.[0]?.id);
    
    import pulumi
    import pulumi_alicloud as alicloud
    
    ids = alicloud.alb.get_acls()
    pulumi.export("albAclId1", ids.acls[0].id)
    name_regex = alicloud.alb.get_acls(name_regex="^my-Acl")
    pulumi.export("albAclId2", name_regex.acls[0].id)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/alb"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		ids, err := alb.GetAcls(ctx, nil, nil)
    		if err != nil {
    			return err
    		}
    		ctx.Export("albAclId1", ids.Acls[0].Id)
    		nameRegex, err := alb.GetAcls(ctx, &alb.GetAclsArgs{
    			NameRegex: pulumi.StringRef("^my-Acl"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		ctx.Export("albAclId2", nameRegex.Acls[0].Id)
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AliCloud = Pulumi.AliCloud;
    
    return await Deployment.RunAsync(() => 
    {
        var ids = AliCloud.Alb.GetAcls.Invoke();
    
        var nameRegex = AliCloud.Alb.GetAcls.Invoke(new()
        {
            NameRegex = "^my-Acl",
        });
    
        return new Dictionary<string, object?>
        {
            ["albAclId1"] = ids.Apply(getAclsResult => getAclsResult.Acls[0]?.Id),
            ["albAclId2"] = nameRegex.Apply(getAclsResult => getAclsResult.Acls[0]?.Id),
        };
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.alicloud.alb.AlbFunctions;
    import com.pulumi.alicloud.alb.inputs.GetAclsArgs;
    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 ids = AlbFunctions.getAcls();
    
            ctx.export("albAclId1", ids.applyValue(getAclsResult -> getAclsResult.acls()[0].id()));
            final var nameRegex = AlbFunctions.getAcls(GetAclsArgs.builder()
                .nameRegex("^my-Acl")
                .build());
    
            ctx.export("albAclId2", nameRegex.applyValue(getAclsResult -> getAclsResult.acls()[0].id()));
        }
    }
    
    variables:
      ids:
        fn::invoke:
          Function: alicloud:alb:getAcls
          Arguments: {}
      nameRegex:
        fn::invoke:
          Function: alicloud:alb:getAcls
          Arguments:
            nameRegex: ^my-Acl
    outputs:
      albAclId1: ${ids.acls[0].id}
      albAclId2: ${nameRegex.acls[0].id}
    

    Using getAcls

    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 getAcls(args: GetAclsArgs, opts?: InvokeOptions): Promise<GetAclsResult>
    function getAclsOutput(args: GetAclsOutputArgs, opts?: InvokeOptions): Output<GetAclsResult>
    def get_acls(acl_ids: Optional[Sequence[str]] = None,
                 acl_name: Optional[str] = None,
                 enable_details: Optional[bool] = None,
                 ids: Optional[Sequence[str]] = None,
                 name_regex: Optional[str] = None,
                 output_file: Optional[str] = None,
                 resource_group_id: Optional[str] = None,
                 status: Optional[str] = None,
                 opts: Optional[InvokeOptions] = None) -> GetAclsResult
    def get_acls_output(acl_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                 acl_name: Optional[pulumi.Input[str]] = None,
                 enable_details: Optional[pulumi.Input[bool]] = None,
                 ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                 name_regex: Optional[pulumi.Input[str]] = None,
                 output_file: Optional[pulumi.Input[str]] = None,
                 resource_group_id: Optional[pulumi.Input[str]] = None,
                 status: Optional[pulumi.Input[str]] = None,
                 opts: Optional[InvokeOptions] = None) -> Output[GetAclsResult]
    func GetAcls(ctx *Context, args *GetAclsArgs, opts ...InvokeOption) (*GetAclsResult, error)
    func GetAclsOutput(ctx *Context, args *GetAclsOutputArgs, opts ...InvokeOption) GetAclsResultOutput

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

    public static class GetAcls 
    {
        public static Task<GetAclsResult> InvokeAsync(GetAclsArgs args, InvokeOptions? opts = null)
        public static Output<GetAclsResult> Invoke(GetAclsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetAclsResult> getAcls(GetAclsArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: alicloud:alb/getAcls:getAcls
      arguments:
        # arguments dictionary

    The following arguments are supported:

    AclIds List<string>
    The acl ids.
    AclName string
    The ACL Name.
    EnableDetails bool
    Default to false. Set it to true can output more details about resource attributes.
    Ids List<string>
    A list of Acl IDs.
    NameRegex string
    A regex string to filter results by Acl name.
    OutputFile string
    File name where to save data source results (after running pulumi preview).
    ResourceGroupId string
    Resource Group to Which the Number.
    Status string
    The state of the ACL. Valid values:Provisioning , Available and Configuring. Provisioning: The ACL is being created. Available: The ACL is available. Configuring: The ACL is being configured.
    AclIds []string
    The acl ids.
    AclName string
    The ACL Name.
    EnableDetails bool
    Default to false. Set it to true can output more details about resource attributes.
    Ids []string
    A list of Acl IDs.
    NameRegex string
    A regex string to filter results by Acl name.
    OutputFile string
    File name where to save data source results (after running pulumi preview).
    ResourceGroupId string
    Resource Group to Which the Number.
    Status string
    The state of the ACL. Valid values:Provisioning , Available and Configuring. Provisioning: The ACL is being created. Available: The ACL is available. Configuring: The ACL is being configured.
    aclIds List<String>
    The acl ids.
    aclName String
    The ACL Name.
    enableDetails Boolean
    Default to false. Set it to true can output more details about resource attributes.
    ids List<String>
    A list of Acl IDs.
    nameRegex String
    A regex string to filter results by Acl name.
    outputFile String
    File name where to save data source results (after running pulumi preview).
    resourceGroupId String
    Resource Group to Which the Number.
    status String
    The state of the ACL. Valid values:Provisioning , Available and Configuring. Provisioning: The ACL is being created. Available: The ACL is available. Configuring: The ACL is being configured.
    aclIds string[]
    The acl ids.
    aclName string
    The ACL Name.
    enableDetails boolean
    Default to false. Set it to true can output more details about resource attributes.
    ids string[]
    A list of Acl IDs.
    nameRegex string
    A regex string to filter results by Acl name.
    outputFile string
    File name where to save data source results (after running pulumi preview).
    resourceGroupId string
    Resource Group to Which the Number.
    status string
    The state of the ACL. Valid values:Provisioning , Available and Configuring. Provisioning: The ACL is being created. Available: The ACL is available. Configuring: The ACL is being configured.
    acl_ids Sequence[str]
    The acl ids.
    acl_name str
    The ACL Name.
    enable_details bool
    Default to false. Set it to true can output more details about resource attributes.
    ids Sequence[str]
    A list of Acl IDs.
    name_regex str
    A regex string to filter results by Acl name.
    output_file str
    File name where to save data source results (after running pulumi preview).
    resource_group_id str
    Resource Group to Which the Number.
    status str
    The state of the ACL. Valid values:Provisioning , Available and Configuring. Provisioning: The ACL is being created. Available: The ACL is available. Configuring: The ACL is being configured.
    aclIds List<String>
    The acl ids.
    aclName String
    The ACL Name.
    enableDetails Boolean
    Default to false. Set it to true can output more details about resource attributes.
    ids List<String>
    A list of Acl IDs.
    nameRegex String
    A regex string to filter results by Acl name.
    outputFile String
    File name where to save data source results (after running pulumi preview).
    resourceGroupId String
    Resource Group to Which the Number.
    status String
    The state of the ACL. Valid values:Provisioning , Available and Configuring. Provisioning: The ACL is being created. Available: The ACL is available. Configuring: The ACL is being configured.

    getAcls Result

    The following output properties are available:

    Acls List<Pulumi.AliCloud.Alb.Outputs.GetAclsAcl>
    Id string
    The provider-assigned unique ID for this managed resource.
    Ids List<string>
    Names List<string>
    AclIds List<string>
    AclName string
    EnableDetails bool
    NameRegex string
    OutputFile string
    ResourceGroupId string
    Status string
    Acls []GetAclsAcl
    Id string
    The provider-assigned unique ID for this managed resource.
    Ids []string
    Names []string
    AclIds []string
    AclName string
    EnableDetails bool
    NameRegex string
    OutputFile string
    ResourceGroupId string
    Status string
    acls List<GetAclsAcl>
    id String
    The provider-assigned unique ID for this managed resource.
    ids List<String>
    names List<String>
    aclIds List<String>
    aclName String
    enableDetails Boolean
    nameRegex String
    outputFile String
    resourceGroupId String
    status String
    acls GetAclsAcl[]
    id string
    The provider-assigned unique ID for this managed resource.
    ids string[]
    names string[]
    aclIds string[]
    aclName string
    enableDetails boolean
    nameRegex string
    outputFile string
    resourceGroupId string
    status string
    acls Sequence[GetAclsAcl]
    id str
    The provider-assigned unique ID for this managed resource.
    ids Sequence[str]
    names Sequence[str]
    acl_ids Sequence[str]
    acl_name str
    enable_details bool
    name_regex str
    output_file str
    resource_group_id str
    status str
    acls List<Property Map>
    id String
    The provider-assigned unique ID for this managed resource.
    ids List<String>
    names List<String>
    aclIds List<String>
    aclName String
    enableDetails Boolean
    nameRegex String
    outputFile String
    resourceGroupId String
    status String

    Supporting Types

    GetAclsAcl

    AclEntries List<Pulumi.AliCloud.Alb.Inputs.GetAclsAclAclEntry>
    ACL Entries.
    AclId string
    Access Control Policy ID.
    AclName string
    The ACL Name.
    AddressIpVersion string
    Address Protocol Version.
    Id string
    The ID of the Acl.
    ResourceGroupId string
    Resource Group to Which the Number.
    Status string
    The state of the ACL. Valid values:Provisioning , Available and Configuring. Provisioning: The ACL is being created. Available: The ACL is available. Configuring: The ACL is being configured.
    AclEntries []GetAclsAclAclEntry
    ACL Entries.
    AclId string
    Access Control Policy ID.
    AclName string
    The ACL Name.
    AddressIpVersion string
    Address Protocol Version.
    Id string
    The ID of the Acl.
    ResourceGroupId string
    Resource Group to Which the Number.
    Status string
    The state of the ACL. Valid values:Provisioning , Available and Configuring. Provisioning: The ACL is being created. Available: The ACL is available. Configuring: The ACL is being configured.
    aclEntries List<GetAclsAclAclEntry>
    ACL Entries.
    aclId String
    Access Control Policy ID.
    aclName String
    The ACL Name.
    addressIpVersion String
    Address Protocol Version.
    id String
    The ID of the Acl.
    resourceGroupId String
    Resource Group to Which the Number.
    status String
    The state of the ACL. Valid values:Provisioning , Available and Configuring. Provisioning: The ACL is being created. Available: The ACL is available. Configuring: The ACL is being configured.
    aclEntries GetAclsAclAclEntry[]
    ACL Entries.
    aclId string
    Access Control Policy ID.
    aclName string
    The ACL Name.
    addressIpVersion string
    Address Protocol Version.
    id string
    The ID of the Acl.
    resourceGroupId string
    Resource Group to Which the Number.
    status string
    The state of the ACL. Valid values:Provisioning , Available and Configuring. Provisioning: The ACL is being created. Available: The ACL is available. Configuring: The ACL is being configured.
    acl_entries Sequence[GetAclsAclAclEntry]
    ACL Entries.
    acl_id str
    Access Control Policy ID.
    acl_name str
    The ACL Name.
    address_ip_version str
    Address Protocol Version.
    id str
    The ID of the Acl.
    resource_group_id str
    Resource Group to Which the Number.
    status str
    The state of the ACL. Valid values:Provisioning , Available and Configuring. Provisioning: The ACL is being created. Available: The ACL is available. Configuring: The ACL is being configured.
    aclEntries List<Property Map>
    ACL Entries.
    aclId String
    Access Control Policy ID.
    aclName String
    The ACL Name.
    addressIpVersion String
    Address Protocol Version.
    id String
    The ID of the Acl.
    resourceGroupId String
    Resource Group to Which the Number.
    status String
    The state of the ACL. Valid values:Provisioning , Available and Configuring. Provisioning: The ACL is being created. Available: The ACL is available. Configuring: The ACL is being configured.

    GetAclsAclAclEntry

    Description string
    Access Control Entries Note Description Length Is Limited to 1 to 256 Characters, Letters, digital, the Dash (-), a Forward Slash (/), Half a Period (.) and Underscores (_), Support Chinese Characters.
    Entry string
    Status string
    The state of the ACL. Valid values:Provisioning , Available and Configuring. Provisioning: The ACL is being created. Available: The ACL is available. Configuring: The ACL is being configured.
    Description string
    Access Control Entries Note Description Length Is Limited to 1 to 256 Characters, Letters, digital, the Dash (-), a Forward Slash (/), Half a Period (.) and Underscores (_), Support Chinese Characters.
    Entry string
    Status string
    The state of the ACL. Valid values:Provisioning , Available and Configuring. Provisioning: The ACL is being created. Available: The ACL is available. Configuring: The ACL is being configured.
    description String
    Access Control Entries Note Description Length Is Limited to 1 to 256 Characters, Letters, digital, the Dash (-), a Forward Slash (/), Half a Period (.) and Underscores (_), Support Chinese Characters.
    entry String
    status String
    The state of the ACL. Valid values:Provisioning , Available and Configuring. Provisioning: The ACL is being created. Available: The ACL is available. Configuring: The ACL is being configured.
    description string
    Access Control Entries Note Description Length Is Limited to 1 to 256 Characters, Letters, digital, the Dash (-), a Forward Slash (/), Half a Period (.) and Underscores (_), Support Chinese Characters.
    entry string
    status string
    The state of the ACL. Valid values:Provisioning , Available and Configuring. Provisioning: The ACL is being created. Available: The ACL is available. Configuring: The ACL is being configured.
    description str
    Access Control Entries Note Description Length Is Limited to 1 to 256 Characters, Letters, digital, the Dash (-), a Forward Slash (/), Half a Period (.) and Underscores (_), Support Chinese Characters.
    entry str
    status str
    The state of the ACL. Valid values:Provisioning , Available and Configuring. Provisioning: The ACL is being created. Available: The ACL is available. Configuring: The ACL is being configured.
    description String
    Access Control Entries Note Description Length Is Limited to 1 to 256 Characters, Letters, digital, the Dash (-), a Forward Slash (/), Half a Period (.) and Underscores (_), Support Chinese Characters.
    entry String
    status String
    The state of the ACL. Valid values:Provisioning , Available and Configuring. Provisioning: The ACL is being created. Available: The ACL is available. Configuring: The ACL is being configured.

    Package Details

    Repository
    Alibaba Cloud pulumi/pulumi-alicloud
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the alicloud Terraform Provider.
    alicloud logo
    Alibaba Cloud v3.51.0 published on Saturday, Mar 23, 2024 by Pulumi