Show / Hide Table of Contents

Class GetAcls

Inheritance
System.Object
GetAcls
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.AliCloud.Sag
Assembly: Pulumi.AliCloud.dll
Syntax
public static class GetAcls

Methods

View Source

InvokeAsync(GetAclsArgs, InvokeOptions)

This data source provides Sag Acls available to the user.

NOTE: Available in 1.60.0+

NOTE: Only the following regions support create Cloud Connect Network. [cn-shanghai, cn-shanghai-finance-1, cn-hongkong, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-southeast-5, ap-northeast-1, eu-central-1]

{{% examples %}}

Example Usage

{{% example %}}

Basic Usage

using Pulumi;
using AliCloud = Pulumi.AliCloud;

class MyStack : Stack
{
public MyStack()
{
    var defaultAcls = Output.Create(AliCloud.Sag.GetAcls.InvokeAsync(new AliCloud.Sag.GetAclsArgs
    {
        Ids = 
        {
            alicloud_sag_acls.Default.Id,
        },
        NameRegex = "^tf-testAcc.*",
    }));
    var defaultAcl = new AliCloud.RocketMQ.Acl("defaultAcl", new AliCloud.RocketMQ.AclArgs
    {
    });
}

}

{{% /example %}} {{% /examples %}}

Declaration
public static Task<GetAclsResult> InvokeAsync(GetAclsArgs args = null, InvokeOptions options = null)
Parameters
Type Name Description
GetAclsArgs args
InvokeOptions options
Returns
Type Description
System.Threading.Tasks.Task<GetAclsResult>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.