Module sag
This page documents the language specification for the alicloud package. If you're looking for help working with the inputs, outputs, or functions of alicloud resources in a Pulumi program, please see the resource documentation for examples and API reference.
This provider is a derived work of the Terraform Provider distributed under MPL 2.0. If you encounter a bug or missing feature, first check the
pulumi/pulumi-alicloudrepo; however, if that doesn’t turn up anything, please consult the sourceterraform-providers/terraform-provider-alicloudrepo.
Functions
Others
Functions
Function getAcls
getAcls(args?: GetAclsArgs, opts?: pulumi.InvokeOptions): Promise<GetAclsResult>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]
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
const defaultAcls = alicloud_sag_acls_default.id.apply(id => alicloud.sag.getAcls({
ids: [id],
nameRegex: "^tf-testAcc.*",
}, { async: true }));
const defaultAcl = new alicloud.rocketmq.Acl("default", {});Others
interface GetAclsArgs
interface GetAclsArgsA collection of arguments for invoking getAcls.
property ids
ids?: string[];A list of Sag Acl IDs.
property nameRegex
nameRegex?: undefined | string;A regex string to filter Sag Acl instances by name.
property outputFile
outputFile?: undefined | string;interface GetAclsResult
interface GetAclsResultA collection of values returned by getAcls.
property acls
acls: GetAclsAcl[];A list of Sag Acls. Each element contains the following attributes:
property id
id: string;The provider-assigned unique ID for this managed resource.
property ids
ids: string[];A list of Sag Acl IDs.
property nameRegex
nameRegex?: undefined | string;property names
names: string[];A list of Sag Acls names.
property outputFile
outputFile?: undefined | string;