Viewing docs for Alibaba Cloud v3.108.0
published on Thursday, Sep 17, 2026 by Pulumi
published on Thursday, Sep 17, 2026 by Pulumi
Viewing docs for Alibaba Cloud v3.108.0
published on Thursday, Sep 17, 2026 by Pulumi
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 dictionarydata "alicloud_threatdetection_get_attack_path_whitelists" "name" {
# arguments
}The following arguments are supported:
- Enable
Details bool - Default to
false. Set it totruecan 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 stringDesc - 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.
- Enable
Details bool - Default to
false. Set it totruecan 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). - Output
File string - File name where to save data source results (after running
pulumi preview). - Path
Name stringDesc - 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.
- enable_
details bool - Default to
false. Set it totruecan 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_ stringdesc - 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.
- enable
Details Boolean - Default to
false. Set it totruecan 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 StringDesc - 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.
- enable
Details boolean - Default to
false. Set it totruecan 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). - output
File string - File name where to save data source results (after running
pulumi preview). - path
Name stringDesc - 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.
- enable_
details bool - Default to
false. Set it totruecan 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_ strdesc - 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.
- enable
Details Boolean - Default to
false. Set it totruecan 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 StringDesc - 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.
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.
Ali Cloud. Threat Detection. Outputs. Get Attack Path Whitelists Whitelist> - A list of Attack Path Whitelist Entries. Each element contains the following attributes:
- Enable
Details bool - Lang string
- Output
File string - Path
Name stringDesc - 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 []string
- A list of Attack Path Whitelist IDs.
- Whitelists
[]Get
Attack Path Whitelists Whitelist - A list of Attack Path Whitelist Entries. Each element contains the following attributes:
- Enable
Details bool - Lang string
- Output
File string - Path
Name stringDesc - 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(object)
- A list of Attack Path Whitelist Entries. Each element contains the following attributes:
- enable_
details bool - lang string
- output_
file string - path_
name_ stringdesc - 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<Get
Attack Path Whitelists Whitelist> - A list of Attack Path Whitelist Entries. Each element contains the following attributes:
- enable
Details Boolean - lang String
- output
File String - path
Name StringDesc - 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 string[]
- A list of Attack Path Whitelist IDs.
- whitelists
Get
Attack Path Whitelists Whitelist[] - A list of Attack Path Whitelist Entries. Each element contains the following attributes:
- enable
Details boolean - lang string
- output
File string - path
Name stringDesc - path
Type string - The path type of the whitelist.
- whitelist
Name 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[Get
Attack Path Whitelists Whitelist] - A list of Attack Path Whitelist Entries. Each element contains the following attributes:
- enable_
details bool - lang str
- output_
file str - path_
name_ strdesc - 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:
- enable
Details Boolean - lang String
- output
File String - path
Name StringDesc - path
Type String - The path type of the whitelist.
- whitelist
Name String - The name of the whitelist.
Supporting Types
GetAttackPathWhitelistsWhitelist
- Attack
Path List<Pulumi.Asset Lists Ali Cloud. Threat Detection. Inputs. Get Attack Path Whitelists Whitelist Attack Path Asset List> - NOTE: This field is only available when
enableDetailsistrue. The list of attack path cloud product assets. - Attack
Path stringWhitelist Id - 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.
- Attack
Path []GetAsset Lists Attack Path Whitelists Whitelist Attack Path Asset List - NOTE: This field is only available when
enableDetailsistrue. The list of attack path cloud product assets. - Attack
Path stringWhitelist Id - 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.
- attack_
path_ list(object)asset_ lists - NOTE: This field is only available when
enableDetailsistrue. The list of attack path cloud product assets. - attack_
path_ stringwhitelist_ id - 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.
- attack
Path List<GetAsset Lists Attack Path Whitelists Whitelist Attack Path Asset List> - NOTE: This field is only available when
enableDetailsistrue. The list of attack path cloud product assets. - attack
Path StringWhitelist Id - 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.
- attack
Path GetAsset Lists Attack Path Whitelists Whitelist Attack Path Asset List[] - NOTE: This field is only available when
enableDetailsistrue. The list of attack path cloud product assets. - attack
Path stringWhitelist Id - 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.
- attack_
path_ Sequence[Getasset_ lists Attack Path Whitelists Whitelist Attack Path Asset List] - NOTE: This field is only available when
enableDetailsistrue. The list of attack path cloud product assets. - attack_
path_ strwhitelist_ id - 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.
- attack
Path List<Property Map>Asset Lists - NOTE: This field is only available when
enableDetailsistrue. The list of attack path cloud product assets. - attack
Path StringWhitelist Id - 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.
GetAttackPathWhitelistsWhitelistAttackPathAssetList
- Asset
Sub intType - The subtype of the cloud product asset.
- Asset
Type int - 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 int
- The vendor of the cloud product asset.
- Asset
Sub intType - The subtype of the cloud product asset.
- Asset
Type int - 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 int
- The vendor of the cloud product asset.
- asset_
sub_ numbertype - 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.
- asset
Sub IntegerType - The subtype of the cloud product asset.
- asset
Type Integer - 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 Integer
- The vendor of the cloud product asset.
- asset
Sub numberType - 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.
- asset_
sub_ inttype - 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.
- asset
Sub NumberType - 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.
Package Details
- Repository
- Alibaba Cloud pulumi/pulumi-alicloud
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
alicloudTerraform Provider.
Viewing docs for Alibaba Cloud v3.108.0
published on Thursday, Sep 17, 2026 by Pulumi
published on Thursday, Sep 17, 2026 by Pulumi