1. Registry
  2. Packages
  3. Alibaba Cloud Provider
  4. API Docs
  5. threatdetection
  6. getAttackPathWhitelists
Viewing docs for Alibaba Cloud v3.108.0
published on Thursday, Sep 17, 2026 by Pulumi
alicloud logo alicloud logo
Viewing docs for Alibaba Cloud v3.108.0
published on Thursday, Sep 17, 2026 by Pulumi

    This data source provides Threat Detection Attack Path Whitelist available to the user.What is Attack Path Whitelist

    NOTE: Available since v1.292.0.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as alicloud from "@pulumi/alicloud";
    
    const config = new pulumi.Config();
    const name = config.get("name") || "terraform-example";
    const defaultAttackPathWhitelist = new alicloud.threatdetection.AttackPathWhitelist("default", {
        pathType: "role_escalation",
        whitelistType: "PART_ASSET",
        whitelistName: name,
        pathName: "ecs_get_credential_by_create_login_profile",
        remark: name,
        attackPathAssetLists: [{
            instanceId: "AliyunYundunSASReadOnlyAccess::System",
            regionId: "cn-hangzhou",
            vendor: 0,
            assetType: 15,
            assetSubType: 2,
            nodeType: "end",
        }],
    });
    const _default = alicloud.threatdetection.getAttackPathWhitelistsOutput({
        ids: [defaultAttackPathWhitelist.id],
        pathType: "role_escalation",
        whitelistName: name,
    });
    export const alicloudThreatDetectionAttackPathWhitelistExampleId = _default.apply(_default => _default.whitelists?.[0]?.id);
    
    import pulumi
    import pulumi_alicloud as alicloud
    
    config = pulumi.Config()
    name = config.get("name")
    if name is None:
        name = "terraform-example"
    default_attack_path_whitelist = alicloud.threatdetection.AttackPathWhitelist("default",
        path_type="role_escalation",
        whitelist_type="PART_ASSET",
        whitelist_name=name,
        path_name="ecs_get_credential_by_create_login_profile",
        remark=name,
        attack_path_asset_lists=[{
            "instance_id": "AliyunYundunSASReadOnlyAccess::System",
            "region_id": "cn-hangzhou",
            "vendor": 0,
            "asset_type": 15,
            "asset_sub_type": 2,
            "node_type": "end",
        }])
    default = alicloud.threatdetection.get_attack_path_whitelists_output(ids=[default_attack_path_whitelist.id],
        path_type="role_escalation",
        whitelist_name=name)
    pulumi.export("alicloudThreatDetectionAttackPathWhitelistExampleId", default.whitelists[0].id)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/threatdetection"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		cfg := config.New(ctx, "")
    		name := "terraform-example"
    		if param := cfg.Get("name"); param != "" {
    			name = param
    		}
    		defaultAttackPathWhitelist, err := threatdetection.NewAttackPathWhitelist(ctx, "default", &threatdetection.AttackPathWhitelistArgs{
    			PathType:      pulumi.String("role_escalation"),
    			WhitelistType: pulumi.String("PART_ASSET"),
    			WhitelistName: pulumi.String(name),
    			PathName:      pulumi.String("ecs_get_credential_by_create_login_profile"),
    			Remark:        pulumi.String(name),
    			AttackPathAssetLists: threatdetection.AttackPathWhitelistAttackPathAssetListArray{
    				&threatdetection.AttackPathWhitelistAttackPathAssetListArgs{
    					InstanceId:   pulumi.String("AliyunYundunSASReadOnlyAccess::System"),
    					RegionId:     pulumi.String("cn-hangzhou"),
    					Vendor:       pulumi.Int(0),
    					AssetType:    pulumi.Int(15),
    					AssetSubType: pulumi.Int(2),
    					NodeType:     pulumi.String("end"),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		_default := threatdetection.GetAttackPathWhitelistsOutput(ctx, threatdetection.GetAttackPathWhitelistsOutputArgs{
    			Ids: pulumi.StringArray{
    				defaultAttackPathWhitelist.ID().ToIDOutput().ToStringOutput(),
    			},
    			PathType:      pulumi.String("role_escalation"),
    			WhitelistName: pulumi.String(name),
    		}, nil)
    		ctx.Export("alicloudThreatDetectionAttackPathWhitelistExampleId", _default.ApplyT(func(_default threatdetection.GetAttackPathWhitelistsResult) (*string, error) {
    			return _default.Whitelists[0].Id, nil
    		}).(pulumi.StringPtrOutput))
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AliCloud = Pulumi.AliCloud;
    
    return await Deployment.RunAsync(() => 
    {
        var config = new Config();
        var name = config.Get("name") ?? "terraform-example";
        var defaultAttackPathWhitelist = new AliCloud.ThreatDetection.AttackPathWhitelist("default", new()
        {
            PathType = "role_escalation",
            WhitelistType = "PART_ASSET",
            WhitelistName = name,
            PathName = "ecs_get_credential_by_create_login_profile",
            Remark = name,
            AttackPathAssetLists = new[]
            {
                new AliCloud.ThreatDetection.Inputs.AttackPathWhitelistAttackPathAssetListArgs
                {
                    InstanceId = "AliyunYundunSASReadOnlyAccess::System",
                    RegionId = "cn-hangzhou",
                    Vendor = 0,
                    AssetType = 15,
                    AssetSubType = 2,
                    NodeType = "end",
                },
            },
        });
    
        var @default = AliCloud.ThreatDetection.GetAttackPathWhitelists.Invoke(new()
        {
            Ids = new[]
            {
                defaultAttackPathWhitelist.Id,
            },
            PathType = "role_escalation",
            WhitelistName = name,
        });
    
        return new Dictionary<string, object?>
        {
            ["alicloudThreatDetectionAttackPathWhitelistExampleId"] = @default.Apply(@default => @default.Apply(getAttackPathWhitelistsResult => getAttackPathWhitelistsResult.Whitelists[0]?.Id)),
        };
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.alicloud.threatdetection.AttackPathWhitelist;
    import com.pulumi.alicloud.threatdetection.AttackPathWhitelistArgs;
    import com.pulumi.alicloud.threatdetection.inputs.AttackPathWhitelistAttackPathAssetListArgs;
    import com.pulumi.alicloud.threatdetection.ThreatdetectionFunctions;
    import com.pulumi.alicloud.threatdetection.inputs.GetAttackPathWhitelistsArgs;
    import java.util.ArrayList;
    import java.util.Arrays;
    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 config = ctx.config();
            final var name = config.get("name").orElse("terraform-example");
            var defaultAttackPathWhitelist = new AttackPathWhitelist("defaultAttackPathWhitelist", AttackPathWhitelistArgs.builder()
                .pathType("role_escalation")
                .whitelistType("PART_ASSET")
                .whitelistName(name)
                .pathName("ecs_get_credential_by_create_login_profile")
                .remark(name)
                .attackPathAssetLists(AttackPathWhitelistAttackPathAssetListArgs.builder()
                    .instanceId("AliyunYundunSASReadOnlyAccess::System")
                    .regionId("cn-hangzhou")
                    .vendor(0)
                    .assetType(15)
                    .assetSubType(2)
                    .nodeType("end")
                    .build())
                .build());
    
            final var default = ThreatdetectionFunctions.getAttackPathWhitelists(GetAttackPathWhitelistsArgs.builder()
                .ids(defaultAttackPathWhitelist.id())
                .pathType("role_escalation")
                .whitelistName(name)
                .build());
    
            ctx.export("alicloudThreatDetectionAttackPathWhitelistExampleId", default_.applyValue(_default_ -> _default_.whitelists()[0].id()));
        }
    }
    
    configuration:
      name:
        type: string
        default: terraform-example
    resources:
      defaultAttackPathWhitelist:
        type: alicloud:threatdetection:AttackPathWhitelist
        name: default
        properties:
          pathType: role_escalation
          whitelistType: PART_ASSET
          whitelistName: ${name}
          pathName: ecs_get_credential_by_create_login_profile
          remark: ${name}
          attackPathAssetLists:
            - instanceId: AliyunYundunSASReadOnlyAccess::System
              regionId: cn-hangzhou
              vendor: 0
              assetType: 15
              assetSubType: 2
              nodeType: end
    variables:
      default:
        fn::invoke:
          function: alicloud:threatdetection:getAttackPathWhitelists
          arguments:
            ids:
              - ${defaultAttackPathWhitelist.id}
            pathType: role_escalation
            whitelistName: ${name}
    outputs:
      alicloudThreatDetectionAttackPathWhitelistExampleId: ${default.whitelists[0].id}
    
    pulumi {
      required_providers {
        alicloud = {
          source = "pulumi/alicloud"
        }
      }
    }
    
    data "alicloud_threatdetection_getattackpathwhitelists" "default" {
      ids            = [alicloud_threatdetection_attackpathwhitelist.default.id]
      path_type      = "role_escalation"
      whitelist_name = var.name
    }
    
    resource "alicloud_threatdetection_attackpathwhitelist" "default" {
      path_type      = "role_escalation"
      whitelist_type = "PART_ASSET"
      whitelist_name = var.name
      path_name      = "ecs_get_credential_by_create_login_profile"
      remark         = var.name
      attack_path_asset_lists {
        instance_id    = "AliyunYundunSASReadOnlyAccess::System"
        region_id      = "cn-hangzhou"
        vendor         = 0
        asset_type     = 15
        asset_sub_type = 2
        node_type      = "end"
      }
    }
    variable "name" {
      type    = string
      default = "terraform-example"
    }
    output "alicloudThreatDetectionAttackPathWhitelistExampleId" {
      value = data.alicloud_threatdetection_getattackpathwhitelists.default.whitelists[0].id
    }
    

    Using getAttackPathWhitelists

    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 getAttackPathWhitelists(args: GetAttackPathWhitelistsArgs, opts?: InvokeOptions): Promise<GetAttackPathWhitelistsResult>
    function getAttackPathWhitelistsOutput(args: GetAttackPathWhitelistsOutputArgs, opts?: InvokeOutputOptions): Output<GetAttackPathWhitelistsResult>
    def get_attack_path_whitelists(enable_details: Optional[bool] = None,
                                   ids: Optional[Sequence[str]] = None,
                                   lang: Optional[str] = None,
                                   output_file: Optional[str] = None,
                                   path_name_desc: Optional[str] = None,
                                   path_type: Optional[str] = None,
                                   whitelist_name: Optional[str] = None,
                                   opts: Optional[InvokeOptions] = None) -> GetAttackPathWhitelistsResult
    def get_attack_path_whitelists_output(enable_details: pulumi.Input[Optional[bool]] = None,
                                   ids: pulumi.Input[Optional[Sequence[pulumi.Input[str]]]] = None,
                                   lang: pulumi.Input[Optional[str]] = None,
                                   output_file: pulumi.Input[Optional[str]] = None,
                                   path_name_desc: pulumi.Input[Optional[str]] = None,
                                   path_type: pulumi.Input[Optional[str]] = None,
                                   whitelist_name: pulumi.Input[Optional[str]] = None,
                                   opts: Optional[InvokeOutputOptions] = None) -> Output[GetAttackPathWhitelistsResult]
    func GetAttackPathWhitelists(ctx *Context, args *GetAttackPathWhitelistsArgs, opts ...InvokeOption) (*GetAttackPathWhitelistsResult, error)
    func GetAttackPathWhitelistsOutput(ctx *Context, args *GetAttackPathWhitelistsOutputArgs, opts ...InvokeOption) GetAttackPathWhitelistsResultOutput

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

    public static class GetAttackPathWhitelists 
    {
        public static Task<GetAttackPathWhitelistsResult> InvokeAsync(GetAttackPathWhitelistsArgs args, InvokeOptions? opts = null)
        public static Output<GetAttackPathWhitelistsResult> Invoke(GetAttackPathWhitelistsInvokeArgs args, InvokeOptions? opts = null)
        public static Output<GetAttackPathWhitelistsResult> Invoke(GetAttackPathWhitelistsInvokeArgs args, InvokeOutputOptions opts)
    }
    public static CompletableFuture<GetAttackPathWhitelistsResult> getAttackPathWhitelists(GetAttackPathWhitelistsArgs args, InvokeOptions options)
    public static Output<GetAttackPathWhitelistsResult> getAttackPathWhitelists(GetAttackPathWhitelistsArgs args, InvokeOptions options)
    public static Output<GetAttackPathWhitelistsResult> getAttackPathWhitelists(GetAttackPathWhitelistsArgs args, InvokeOutputOptions options)
    
    fn::invoke:
      function: alicloud:threatdetection/getAttackPathWhitelists:getAttackPathWhitelists
      arguments:
        # arguments dictionary
    data "alicloud_threatdetection_get_attack_path_whitelists" "name" {
        # arguments
    }

    The following arguments are supported:

    EnableDetails bool
    Default to false. Set it to true can output more details about resource attributes.
    Ids List<string>
    A list of Attack Path Whitelist IDs.
    Lang string
    The language of the request and response. Valid values: zh (Chinese, default), en (English).
    OutputFile string
    File name where to save data source results (after running pulumi preview).
    PathNameDesc string
    The description of the path name. You can call ListAvailableAttackPath to query the path name descriptions.
    PathType string
    The path type of the whitelist. You can call ListAvailableAttackPath to query the available path types.
    WhitelistName string
    The name of the whitelist.
    EnableDetails bool
    Default to false. Set it to true can output more details about resource attributes.
    Ids []string
    A list of Attack Path Whitelist IDs.
    Lang string
    The language of the request and response. Valid values: zh (Chinese, default), en (English).
    OutputFile string
    File name where to save data source results (after running pulumi preview).
    PathNameDesc string
    The description of the path name. You can call ListAvailableAttackPath to query the path name descriptions.
    PathType string
    The path type of the whitelist. You can call ListAvailableAttackPath to query the available path types.
    WhitelistName string
    The name of the whitelist.
    enable_details bool
    Default to false. Set it to true can output more details about resource attributes.
    ids list(string)
    A list of Attack Path Whitelist IDs.
    lang string
    The language of the request and response. Valid values: zh (Chinese, default), en (English).
    output_file string
    File name where to save data source results (after running pulumi preview).
    path_name_desc string
    The description of the path name. You can call ListAvailableAttackPath to query the path name descriptions.
    path_type string
    The path type of the whitelist. You can call ListAvailableAttackPath to query the available path types.
    whitelist_name string
    The name of the whitelist.
    enableDetails Boolean
    Default to false. Set it to true can output more details about resource attributes.
    ids List<String>
    A list of Attack Path Whitelist IDs.
    lang String
    The language of the request and response. Valid values: zh (Chinese, default), en (English).
    outputFile String
    File name where to save data source results (after running pulumi preview).
    pathNameDesc String
    The description of the path name. You can call ListAvailableAttackPath to query the path name descriptions.
    pathType String
    The path type of the whitelist. You can call ListAvailableAttackPath to query the available path types.
    whitelistName String
    The name of the whitelist.
    enableDetails boolean
    Default to false. Set it to true can output more details about resource attributes.
    ids string[]
    A list of Attack Path Whitelist IDs.
    lang string
    The language of the request and response. Valid values: zh (Chinese, default), en (English).
    outputFile string
    File name where to save data source results (after running pulumi preview).
    pathNameDesc string
    The description of the path name. You can call ListAvailableAttackPath to query the path name descriptions.
    pathType string
    The path type of the whitelist. You can call ListAvailableAttackPath to query the available path types.
    whitelistName string
    The name of the whitelist.
    enable_details bool
    Default to false. Set it to true can output more details about resource attributes.
    ids Sequence[str]
    A list of Attack Path Whitelist IDs.
    lang str
    The language of the request and response. Valid values: zh (Chinese, default), en (English).
    output_file str
    File name where to save data source results (after running pulumi preview).
    path_name_desc str
    The description of the path name. You can call ListAvailableAttackPath to query the path name descriptions.
    path_type str
    The path type of the whitelist. You can call ListAvailableAttackPath to query the available path types.
    whitelist_name str
    The name of the whitelist.
    enableDetails Boolean
    Default to false. Set it to true can output more details about resource attributes.
    ids List<String>
    A list of Attack Path Whitelist IDs.
    lang String
    The language of the request and response. Valid values: zh (Chinese, default), en (English).
    outputFile String
    File name where to save data source results (after running pulumi preview).
    pathNameDesc String
    The description of the path name. You can call ListAvailableAttackPath to query the path name descriptions.
    pathType String
    The path type of the whitelist. You can call ListAvailableAttackPath to query the available path types.
    whitelistName String
    The name of the whitelist.

    getAttackPathWhitelists Result

    The following output properties are available:

    Id string
    The provider-assigned unique ID for this managed resource.
    Ids List<string>
    A list of Attack Path Whitelist IDs.
    Whitelists List<Pulumi.AliCloud.ThreatDetection.Outputs.GetAttackPathWhitelistsWhitelist>
    A list of Attack Path Whitelist Entries. Each element contains the following attributes:
    EnableDetails bool
    Lang string
    OutputFile string
    PathNameDesc string
    PathType string
    The path type of the whitelist.
    WhitelistName string
    The name of the whitelist.
    Id string
    The provider-assigned unique ID for this managed resource.
    Ids []string
    A list of Attack Path Whitelist IDs.
    Whitelists []GetAttackPathWhitelistsWhitelist
    A list of Attack Path Whitelist Entries. Each element contains the following attributes:
    EnableDetails bool
    Lang string
    OutputFile string
    PathNameDesc string
    PathType string
    The path type of the whitelist.
    WhitelistName string
    The name of the whitelist.
    id string
    The provider-assigned unique ID for this managed resource.
    ids list(string)
    A list of Attack Path Whitelist IDs.
    whitelists list(object)
    A list of Attack Path Whitelist Entries. Each element contains the following attributes:
    enable_details bool
    lang string
    output_file string
    path_name_desc string
    path_type string
    The path type of the whitelist.
    whitelist_name string
    The name of the whitelist.
    id String
    The provider-assigned unique ID for this managed resource.
    ids List<String>
    A list of Attack Path Whitelist IDs.
    whitelists List<GetAttackPathWhitelistsWhitelist>
    A list of Attack Path Whitelist Entries. Each element contains the following attributes:
    enableDetails Boolean
    lang String
    outputFile String
    pathNameDesc String
    pathType String
    The path type of the whitelist.
    whitelistName String
    The name of the whitelist.
    id string
    The provider-assigned unique ID for this managed resource.
    ids string[]
    A list of Attack Path Whitelist IDs.
    whitelists GetAttackPathWhitelistsWhitelist[]
    A list of Attack Path Whitelist Entries. Each element contains the following attributes:
    enableDetails boolean
    lang string
    outputFile string
    pathNameDesc string
    pathType string
    The path type of the whitelist.
    whitelistName string
    The name of the whitelist.
    id str
    The provider-assigned unique ID for this managed resource.
    ids Sequence[str]
    A list of Attack Path Whitelist IDs.
    whitelists Sequence[GetAttackPathWhitelistsWhitelist]
    A list of Attack Path Whitelist Entries. Each element contains the following attributes:
    enable_details bool
    lang str
    output_file str
    path_name_desc str
    path_type str
    The path type of the whitelist.
    whitelist_name str
    The name of the whitelist.
    id String
    The provider-assigned unique ID for this managed resource.
    ids List<String>
    A list of Attack Path Whitelist IDs.
    whitelists List<Property Map>
    A list of Attack Path Whitelist Entries. Each element contains the following attributes:
    enableDetails Boolean
    lang String
    outputFile String
    pathNameDesc String
    pathType String
    The path type of the whitelist.
    whitelistName String
    The name of the whitelist.

    Supporting Types

    GetAttackPathWhitelistsWhitelist

    AttackPathAssetLists List<Pulumi.AliCloud.ThreatDetection.Inputs.GetAttackPathWhitelistsWhitelistAttackPathAssetList>
    NOTE: This field is only available when enableDetails is true. The list of attack path cloud product assets.
    AttackPathWhitelistId string
    The ID of the attack path whitelist.
    Id string
    The ID of the resource supplied above.
    PathName string
    The path name of the whitelist.
    PathType string
    The path type of the whitelist. You can call ListAvailableAttackPath to query the available path types.
    Remark string
    The remarks of the whitelist.
    WhitelistName string
    The name of the whitelist.
    WhitelistType string
    The type of the whitelist.
    AttackPathAssetLists []GetAttackPathWhitelistsWhitelistAttackPathAssetList
    NOTE: This field is only available when enableDetails is true. The list of attack path cloud product assets.
    AttackPathWhitelistId string
    The ID of the attack path whitelist.
    Id string
    The ID of the resource supplied above.
    PathName string
    The path name of the whitelist.
    PathType string
    The path type of the whitelist. You can call ListAvailableAttackPath to query the available path types.
    Remark string
    The remarks of the whitelist.
    WhitelistName string
    The name of the whitelist.
    WhitelistType string
    The type of the whitelist.
    attack_path_asset_lists list(object)
    NOTE: This field is only available when enableDetails is true. The list of attack path cloud product assets.
    attack_path_whitelist_id string
    The ID of the attack path whitelist.
    id string
    The ID of the resource supplied above.
    path_name string
    The path name of the whitelist.
    path_type string
    The path type of the whitelist. You can call ListAvailableAttackPath to query the available path types.
    remark string
    The remarks of the whitelist.
    whitelist_name string
    The name of the whitelist.
    whitelist_type string
    The type of the whitelist.
    attackPathAssetLists List<GetAttackPathWhitelistsWhitelistAttackPathAssetList>
    NOTE: This field is only available when enableDetails is true. The list of attack path cloud product assets.
    attackPathWhitelistId String
    The ID of the attack path whitelist.
    id String
    The ID of the resource supplied above.
    pathName String
    The path name of the whitelist.
    pathType String
    The path type of the whitelist. You can call ListAvailableAttackPath to query the available path types.
    remark String
    The remarks of the whitelist.
    whitelistName String
    The name of the whitelist.
    whitelistType String
    The type of the whitelist.
    attackPathAssetLists GetAttackPathWhitelistsWhitelistAttackPathAssetList[]
    NOTE: This field is only available when enableDetails is true. The list of attack path cloud product assets.
    attackPathWhitelistId string
    The ID of the attack path whitelist.
    id string
    The ID of the resource supplied above.
    pathName string
    The path name of the whitelist.
    pathType string
    The path type of the whitelist. You can call ListAvailableAttackPath to query the available path types.
    remark string
    The remarks of the whitelist.
    whitelistName string
    The name of the whitelist.
    whitelistType string
    The type of the whitelist.
    attack_path_asset_lists Sequence[GetAttackPathWhitelistsWhitelistAttackPathAssetList]
    NOTE: This field is only available when enableDetails is true. The list of attack path cloud product assets.
    attack_path_whitelist_id str
    The ID of the attack path whitelist.
    id str
    The ID of the resource supplied above.
    path_name str
    The path name of the whitelist.
    path_type str
    The path type of the whitelist. You can call ListAvailableAttackPath to query the available path types.
    remark str
    The remarks of the whitelist.
    whitelist_name str
    The name of the whitelist.
    whitelist_type str
    The type of the whitelist.
    attackPathAssetLists List<Property Map>
    NOTE: This field is only available when enableDetails is true. The list of attack path cloud product assets.
    attackPathWhitelistId String
    The ID of the attack path whitelist.
    id String
    The ID of the resource supplied above.
    pathName String
    The path name of the whitelist.
    pathType String
    The path type of the whitelist. You can call ListAvailableAttackPath to query the available path types.
    remark String
    The remarks of the whitelist.
    whitelistName String
    The name of the whitelist.
    whitelistType String
    The type of the whitelist.

    GetAttackPathWhitelistsWhitelistAttackPathAssetList

    AssetSubType int
    The subtype of the cloud product asset.
    AssetType int
    The type of the cloud product asset.
    InstanceId string
    The instance ID of the cloud product asset.
    NodeType string
    The type of the whitelist node.
    RegionId string
    The region ID of the cloud product asset instance.
    Vendor int
    The vendor of the cloud product asset.
    AssetSubType int
    The subtype of the cloud product asset.
    AssetType int
    The type of the cloud product asset.
    InstanceId string
    The instance ID of the cloud product asset.
    NodeType string
    The type of the whitelist node.
    RegionId string
    The region ID of the cloud product asset instance.
    Vendor int
    The vendor of the cloud product asset.
    asset_sub_type number
    The subtype of the cloud product asset.
    asset_type number
    The type of the cloud product asset.
    instance_id string
    The instance ID of the cloud product asset.
    node_type string
    The type of the whitelist node.
    region_id string
    The region ID of the cloud product asset instance.
    vendor number
    The vendor of the cloud product asset.
    assetSubType Integer
    The subtype of the cloud product asset.
    assetType Integer
    The type of the cloud product asset.
    instanceId String
    The instance ID of the cloud product asset.
    nodeType String
    The type of the whitelist node.
    regionId String
    The region ID of the cloud product asset instance.
    vendor Integer
    The vendor of the cloud product asset.
    assetSubType number
    The subtype of the cloud product asset.
    assetType number
    The type of the cloud product asset.
    instanceId string
    The instance ID of the cloud product asset.
    nodeType string
    The type of the whitelist node.
    regionId string
    The region ID of the cloud product asset instance.
    vendor number
    The vendor of the cloud product asset.
    asset_sub_type int
    The subtype of the cloud product asset.
    asset_type int
    The type of the cloud product asset.
    instance_id str
    The instance ID of the cloud product asset.
    node_type str
    The type of the whitelist node.
    region_id str
    The region ID of the cloud product asset instance.
    vendor int
    The vendor of the cloud product asset.
    assetSubType Number
    The subtype of the cloud product asset.
    assetType Number
    The type of the cloud product asset.
    instanceId String
    The instance ID of the cloud product asset.
    nodeType String
    The type of the whitelist node.
    regionId String
    The region ID of the cloud product asset instance.
    vendor Number
    The vendor of the cloud product asset.

    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 alicloud logo
    Viewing docs for Alibaba Cloud v3.108.0
    published on Thursday, Sep 17, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial