Alibaba Cloud v3.87.0 published on Saturday, Oct 18, 2025 by Pulumi
alicloud.cloudfirewall.getVpcFirewallCens
This data source provides Cloud Firewall Vpc Firewall Cen available to the user.What is Vpc Firewall Cen
NOTE: Available since v1.194.0.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
const _default = alicloud.cloudfirewall.getVpcFirewallCens({
ids: [defaultAlicloudCloudFirewallVpcFirewallCen.id],
cenId: "cen-cjok7uyb5w2b27573v",
memberUid: "1415189284827022",
status: "closed",
vpcFirewallName: "tf-test",
});
export const alicloudCloudFirewallVpcFirewallCenExampleId = _default.then(_default => _default.cens?.[0]?.id);
import pulumi
import pulumi_alicloud as alicloud
default = alicloud.cloudfirewall.get_vpc_firewall_cens(ids=[default_alicloud_cloud_firewall_vpc_firewall_cen["id"]],
cen_id="cen-cjok7uyb5w2b27573v",
member_uid="1415189284827022",
status="closed",
vpc_firewall_name="tf-test")
pulumi.export("alicloudCloudFirewallVpcFirewallCenExampleId", default.cens[0].id)
package main
import (
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/cloudfirewall"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_default, err := cloudfirewall.GetVpcFirewallCens(ctx, &cloudfirewall.GetVpcFirewallCensArgs{
Ids: interface{}{
defaultAlicloudCloudFirewallVpcFirewallCen.Id,
},
CenId: pulumi.StringRef("cen-cjok7uyb5w2b27573v"),
MemberUid: pulumi.StringRef("1415189284827022"),
Status: pulumi.StringRef("closed"),
VpcFirewallName: pulumi.StringRef("tf-test"),
}, nil);
if err != nil {
return err
}
ctx.Export("alicloudCloudFirewallVpcFirewallCenExampleId", _default.Cens[0].Id)
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;
return await Deployment.RunAsync(() =>
{
var @default = AliCloud.CloudFirewall.GetVpcFirewallCens.Invoke(new()
{
Ids = new[]
{
defaultAlicloudCloudFirewallVpcFirewallCen.Id,
},
CenId = "cen-cjok7uyb5w2b27573v",
MemberUid = "1415189284827022",
Status = "closed",
VpcFirewallName = "tf-test",
});
return new Dictionary<string, object?>
{
["alicloudCloudFirewallVpcFirewallCenExampleId"] = @default.Apply(@default => @default.Apply(getVpcFirewallCensResult => getVpcFirewallCensResult.Cens[0]?.Id)),
};
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.cloudfirewall.CloudfirewallFunctions;
import com.pulumi.alicloud.cloudfirewall.inputs.GetVpcFirewallCensArgs;
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 default = CloudfirewallFunctions.getVpcFirewallCens(GetVpcFirewallCensArgs.builder()
.ids(defaultAlicloudCloudFirewallVpcFirewallCen.id())
.cenId("cen-cjok7uyb5w2b27573v")
.memberUid("1415189284827022")
.status("closed")
.vpcFirewallName("tf-test")
.build());
ctx.export("alicloudCloudFirewallVpcFirewallCenExampleId", default_.cens()[0].id());
}
}
variables:
default:
fn::invoke:
function: alicloud:cloudfirewall:getVpcFirewallCens
arguments:
ids:
- ${defaultAlicloudCloudFirewallVpcFirewallCen.id}
cenId: cen-cjok7uyb5w2b27573v
memberUid: '1415189284827022'
status: closed
vpcFirewallName: tf-test
outputs:
alicloudCloudFirewallVpcFirewallCenExampleId: ${default.cens[0].id}
Using getVpcFirewallCens
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 getVpcFirewallCens(args: GetVpcFirewallCensArgs, opts?: InvokeOptions): Promise<GetVpcFirewallCensResult>
function getVpcFirewallCensOutput(args: GetVpcFirewallCensOutputArgs, opts?: InvokeOptions): Output<GetVpcFirewallCensResult>def get_vpc_firewall_cens(cen_id: Optional[str] = None,
ids: Optional[Sequence[str]] = None,
lang: Optional[str] = None,
member_uid: Optional[str] = None,
network_instance_id: Optional[str] = None,
output_file: Optional[str] = None,
page_number: Optional[int] = None,
page_size: Optional[int] = None,
status: Optional[str] = None,
vpc_firewall_id: Optional[str] = None,
vpc_firewall_name: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetVpcFirewallCensResult
def get_vpc_firewall_cens_output(cen_id: Optional[pulumi.Input[str]] = None,
ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
lang: Optional[pulumi.Input[str]] = None,
member_uid: Optional[pulumi.Input[str]] = None,
network_instance_id: Optional[pulumi.Input[str]] = None,
output_file: Optional[pulumi.Input[str]] = None,
page_number: Optional[pulumi.Input[int]] = None,
page_size: Optional[pulumi.Input[int]] = None,
status: Optional[pulumi.Input[str]] = None,
vpc_firewall_id: Optional[pulumi.Input[str]] = None,
vpc_firewall_name: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetVpcFirewallCensResult]func GetVpcFirewallCens(ctx *Context, args *GetVpcFirewallCensArgs, opts ...InvokeOption) (*GetVpcFirewallCensResult, error)
func GetVpcFirewallCensOutput(ctx *Context, args *GetVpcFirewallCensOutputArgs, opts ...InvokeOption) GetVpcFirewallCensResultOutput> Note: This function is named GetVpcFirewallCens in the Go SDK.
public static class GetVpcFirewallCens
{
public static Task<GetVpcFirewallCensResult> InvokeAsync(GetVpcFirewallCensArgs args, InvokeOptions? opts = null)
public static Output<GetVpcFirewallCensResult> Invoke(GetVpcFirewallCensInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetVpcFirewallCensResult> getVpcFirewallCens(GetVpcFirewallCensArgs args, InvokeOptions options)
public static Output<GetVpcFirewallCensResult> getVpcFirewallCens(GetVpcFirewallCensArgs args, InvokeOptions options)
fn::invoke:
function: alicloud:cloudfirewall/getVpcFirewallCens:getVpcFirewallCens
arguments:
# arguments dictionaryThe following arguments are supported:
- Cen
Id string - The ID of the CEN instance.
- Ids List<string>
- A list of Vpc Firewall Cen IDs.
- Lang string
- The language type of the requested and received messages. Value:-zh (default): Chinese.-en: English.
- Member
Uid string - The UID of the member account (other Alibaba Cloud account) of the current Alibaba cloud account.
- Network
Instance stringId - The ID of the VPC instance that created the VPC firewall.
- Output
File string - File name where to save data source results (after running
pulumi preview). - Page
Number int - Page
Size int - Status string
- Firewall switch status
- Vpc
Firewall stringId - VPC firewall ID
- Vpc
Firewall stringName - The name of the VPC firewall instance.
- Cen
Id string - The ID of the CEN instance.
- Ids []string
- A list of Vpc Firewall Cen IDs.
- Lang string
- The language type of the requested and received messages. Value:-zh (default): Chinese.-en: English.
- Member
Uid string - The UID of the member account (other Alibaba Cloud account) of the current Alibaba cloud account.
- Network
Instance stringId - The ID of the VPC instance that created the VPC firewall.
- Output
File string - File name where to save data source results (after running
pulumi preview). - Page
Number int - Page
Size int - Status string
- Firewall switch status
- Vpc
Firewall stringId - VPC firewall ID
- Vpc
Firewall stringName - The name of the VPC firewall instance.
- cen
Id String - The ID of the CEN instance.
- ids List<String>
- A list of Vpc Firewall Cen IDs.
- lang String
- The language type of the requested and received messages. Value:-zh (default): Chinese.-en: English.
- member
Uid String - The UID of the member account (other Alibaba Cloud account) of the current Alibaba cloud account.
- network
Instance StringId - The ID of the VPC instance that created the VPC firewall.
- output
File String - File name where to save data source results (after running
pulumi preview). - page
Number Integer - page
Size Integer - status String
- Firewall switch status
- vpc
Firewall StringId - VPC firewall ID
- vpc
Firewall StringName - The name of the VPC firewall instance.
- cen
Id string - The ID of the CEN instance.
- ids string[]
- A list of Vpc Firewall Cen IDs.
- lang string
- The language type of the requested and received messages. Value:-zh (default): Chinese.-en: English.
- member
Uid string - The UID of the member account (other Alibaba Cloud account) of the current Alibaba cloud account.
- network
Instance stringId - The ID of the VPC instance that created the VPC firewall.
- output
File string - File name where to save data source results (after running
pulumi preview). - page
Number number - page
Size number - status string
- Firewall switch status
- vpc
Firewall stringId - VPC firewall ID
- vpc
Firewall stringName - The name of the VPC firewall instance.
- cen_
id str - The ID of the CEN instance.
- ids Sequence[str]
- A list of Vpc Firewall Cen IDs.
- lang str
- The language type of the requested and received messages. Value:-zh (default): Chinese.-en: English.
- member_
uid str - The UID of the member account (other Alibaba Cloud account) of the current Alibaba cloud account.
- network_
instance_ strid - The ID of the VPC instance that created the VPC firewall.
- output_
file str - File name where to save data source results (after running
pulumi preview). - page_
number int - page_
size int - status str
- Firewall switch status
- vpc_
firewall_ strid - VPC firewall ID
- vpc_
firewall_ strname - The name of the VPC firewall instance.
- cen
Id String - The ID of the CEN instance.
- ids List<String>
- A list of Vpc Firewall Cen IDs.
- lang String
- The language type of the requested and received messages. Value:-zh (default): Chinese.-en: English.
- member
Uid String - The UID of the member account (other Alibaba Cloud account) of the current Alibaba cloud account.
- network
Instance StringId - The ID of the VPC instance that created the VPC firewall.
- output
File String - File name where to save data source results (after running
pulumi preview). - page
Number Number - page
Size Number - status String
- Firewall switch status
- vpc
Firewall StringId - VPC firewall ID
- vpc
Firewall StringName - The name of the VPC firewall instance.
getVpcFirewallCens Result
The following output properties are available:
- Cens
List<Pulumi.
Ali Cloud. Cloud Firewall. Outputs. Get Vpc Firewall Cens Cen> - A list of Vpc Firewall Cen Entries. Each element contains the following attributes:
- Id string
- The provider-assigned unique ID for this managed resource.
- Ids List<string>
- A list of Vpc Firewall Cen IDs.
- Cen
Id string - The ID of the CEN instance.
- Lang string
- Member
Uid string - The UID of the member account (other Alibaba Cloud account) of the current Alibaba cloud account.
- Network
Instance stringId - The ID of the VPC instance that created the VPC firewall.
- Output
File string - Page
Number int - Page
Size int - Status string
- Firewall switch status
- Vpc
Firewall stringId - VPC firewall ID
- Vpc
Firewall stringName - The name of the VPC firewall instance.
- Cens
[]Get
Vpc Firewall Cens Cen - A list of Vpc Firewall Cen Entries. Each element contains the following attributes:
- Id string
- The provider-assigned unique ID for this managed resource.
- Ids []string
- A list of Vpc Firewall Cen IDs.
- Cen
Id string - The ID of the CEN instance.
- Lang string
- Member
Uid string - The UID of the member account (other Alibaba Cloud account) of the current Alibaba cloud account.
- Network
Instance stringId - The ID of the VPC instance that created the VPC firewall.
- Output
File string - Page
Number int - Page
Size int - Status string
- Firewall switch status
- Vpc
Firewall stringId - VPC firewall ID
- Vpc
Firewall stringName - The name of the VPC firewall instance.
- cens
List<Get
Vpc Firewall Cens Cen> - A list of Vpc Firewall Cen Entries. Each element contains the following attributes:
- id String
- The provider-assigned unique ID for this managed resource.
- ids List<String>
- A list of Vpc Firewall Cen IDs.
- cen
Id String - The ID of the CEN instance.
- lang String
- member
Uid String - The UID of the member account (other Alibaba Cloud account) of the current Alibaba cloud account.
- network
Instance StringId - The ID of the VPC instance that created the VPC firewall.
- output
File String - page
Number Integer - page
Size Integer - status String
- Firewall switch status
- vpc
Firewall StringId - VPC firewall ID
- vpc
Firewall StringName - The name of the VPC firewall instance.
- cens
Get
Vpc Firewall Cens Cen[] - A list of Vpc Firewall Cen Entries. Each element contains the following attributes:
- id string
- The provider-assigned unique ID for this managed resource.
- ids string[]
- A list of Vpc Firewall Cen IDs.
- cen
Id string - The ID of the CEN instance.
- lang string
- member
Uid string - The UID of the member account (other Alibaba Cloud account) of the current Alibaba cloud account.
- network
Instance stringId - The ID of the VPC instance that created the VPC firewall.
- output
File string - page
Number number - page
Size number - status string
- Firewall switch status
- vpc
Firewall stringId - VPC firewall ID
- vpc
Firewall stringName - The name of the VPC firewall instance.
- cens
Sequence[Get
Vpc Firewall Cens Cen] - A list of Vpc Firewall Cen Entries. Each element contains the following attributes:
- id str
- The provider-assigned unique ID for this managed resource.
- ids Sequence[str]
- A list of Vpc Firewall Cen IDs.
- cen_
id str - The ID of the CEN instance.
- lang str
- member_
uid str - The UID of the member account (other Alibaba Cloud account) of the current Alibaba cloud account.
- network_
instance_ strid - The ID of the VPC instance that created the VPC firewall.
- output_
file str - page_
number int - page_
size int - status str
- Firewall switch status
- vpc_
firewall_ strid - VPC firewall ID
- vpc_
firewall_ strname - The name of the VPC firewall instance.
- cens List<Property Map>
- A list of Vpc Firewall Cen Entries. Each element contains the following attributes:
- id String
- The provider-assigned unique ID for this managed resource.
- ids List<String>
- A list of Vpc Firewall Cen IDs.
- cen
Id String - The ID of the CEN instance.
- lang String
- member
Uid String - The UID of the member account (other Alibaba Cloud account) of the current Alibaba cloud account.
- network
Instance StringId - The ID of the VPC instance that created the VPC firewall.
- output
File String - page
Number Number - page
Size Number - status String
- Firewall switch status
- vpc
Firewall StringId - VPC firewall ID
- vpc
Firewall StringName - The name of the VPC firewall instance.
Supporting Types
GetVpcFirewallCensCen
- Cen
Id string - The ID of the CEN instance.
- Connect
Type string - Intercommunication type, value:
expressconnect: Express Channelcen: Cloud Enterprise Network - Id string
- The ID of the CEN instance.
- Local
Vpcs List<Pulumi.Ali Cloud. Cloud Firewall. Inputs. Get Vpc Firewall Cens Cen Local Vpc> - The details of the VPC.
- Network
Instance stringId - The ID of the VPC instance that created the VPC firewall.
- Status string
- Firewall switch status
- Vpc
Firewall stringId - VPC firewall ID
- Vpc
Firewall stringName - The name of the VPC firewall instance.
- Cen
Id string - The ID of the CEN instance.
- Connect
Type string - Intercommunication type, value:
expressconnect: Express Channelcen: Cloud Enterprise Network - Id string
- The ID of the CEN instance.
- Local
Vpcs []GetVpc Firewall Cens Cen Local Vpc - The details of the VPC.
- Network
Instance stringId - The ID of the VPC instance that created the VPC firewall.
- Status string
- Firewall switch status
- Vpc
Firewall stringId - VPC firewall ID
- Vpc
Firewall stringName - The name of the VPC firewall instance.
- cen
Id String - The ID of the CEN instance.
- connect
Type String - Intercommunication type, value:
expressconnect: Express Channelcen: Cloud Enterprise Network - id String
- The ID of the CEN instance.
- local
Vpcs List<GetVpc Firewall Cens Cen Local Vpc> - The details of the VPC.
- network
Instance StringId - The ID of the VPC instance that created the VPC firewall.
- status String
- Firewall switch status
- vpc
Firewall StringId - VPC firewall ID
- vpc
Firewall StringName - The name of the VPC firewall instance.
- cen
Id string - The ID of the CEN instance.
- connect
Type string - Intercommunication type, value:
expressconnect: Express Channelcen: Cloud Enterprise Network - id string
- The ID of the CEN instance.
- local
Vpcs GetVpc Firewall Cens Cen Local Vpc[] - The details of the VPC.
- network
Instance stringId - The ID of the VPC instance that created the VPC firewall.
- status string
- Firewall switch status
- vpc
Firewall stringId - VPC firewall ID
- vpc
Firewall stringName - The name of the VPC firewall instance.
- cen_
id str - The ID of the CEN instance.
- connect_
type str - Intercommunication type, value:
expressconnect: Express Channelcen: Cloud Enterprise Network - id str
- The ID of the CEN instance.
- local_
vpcs Sequence[GetVpc Firewall Cens Cen Local Vpc] - The details of the VPC.
- network_
instance_ strid - The ID of the VPC instance that created the VPC firewall.
- status str
- Firewall switch status
- vpc_
firewall_ strid - VPC firewall ID
- vpc_
firewall_ strname - The name of the VPC firewall instance.
- cen
Id String - The ID of the CEN instance.
- connect
Type String - Intercommunication type, value:
expressconnect: Express Channelcen: Cloud Enterprise Network - id String
- The ID of the CEN instance.
- local
Vpcs List<Property Map> - The details of the VPC.
- network
Instance StringId - The ID of the VPC instance that created the VPC firewall.
- status String
- Firewall switch status
- vpc
Firewall StringId - VPC firewall ID
- vpc
Firewall StringName - The name of the VPC firewall instance.
GetVpcFirewallCensCenLocalVpc
- Attachment
Id string - Attachment
Name string - Defend
Cidr List<string>Lists - The list of network segments protected by the VPC firewall.
- Eni
Lists List<Pulumi.Ali Cloud. Cloud Firewall. Inputs. Get Vpc Firewall Cens Cen Local Vpc Eni List> - Manual
Vswitch stringId - Network
Instance stringId - The ID of the VPC instance that created the VPC firewall.
- Network
Instance stringName - The name of the network instance.
- Network
Instance stringType - The type of the network instance. Value: **VPC * *.
- Owner
Id string - The UID of the Alibaba Cloud account to which the VPC belongs.
- Region
No string - The region ID of the VPC.
- Route
Mode string - Routing mode,. Value:-auto: indicates automatic mode.-manual: indicates manual mode.
- Support
Manual stringMode - Whether routing mode supports manual mode. Value:-1: Supported.-0: Not supported.
- Transit
Router stringId - Transit
Router stringType - The version of the cloud enterprise network forwarding router (CEN-TR). Value:-Basic: Basic Edition.-Enterprise: Enterprise Edition.
- Vpc
Cidr List<Pulumi.Table Lists Ali Cloud. Cloud Firewall. Inputs. Get Vpc Firewall Cens Cen Local Vpc Vpc Cidr Table List> - The VPC network segment list.
- Vpc
Id string - The ID of the VPC instance.
- Vpc
Name string - The instance name of the VPC.
- Attachment
Id string - Attachment
Name string - Defend
Cidr []stringLists - The list of network segments protected by the VPC firewall.
- Eni
Lists []GetVpc Firewall Cens Cen Local Vpc Eni List - Manual
Vswitch stringId - Network
Instance stringId - The ID of the VPC instance that created the VPC firewall.
- Network
Instance stringName - The name of the network instance.
- Network
Instance stringType - The type of the network instance. Value: **VPC * *.
- Owner
Id string - The UID of the Alibaba Cloud account to which the VPC belongs.
- Region
No string - The region ID of the VPC.
- Route
Mode string - Routing mode,. Value:-auto: indicates automatic mode.-manual: indicates manual mode.
- Support
Manual stringMode - Whether routing mode supports manual mode. Value:-1: Supported.-0: Not supported.
- Transit
Router stringId - Transit
Router stringType - The version of the cloud enterprise network forwarding router (CEN-TR). Value:-Basic: Basic Edition.-Enterprise: Enterprise Edition.
- Vpc
Cidr []GetTable Lists Vpc Firewall Cens Cen Local Vpc Vpc Cidr Table List - The VPC network segment list.
- Vpc
Id string - The ID of the VPC instance.
- Vpc
Name string - The instance name of the VPC.
- attachment
Id String - attachment
Name String - defend
Cidr List<String>Lists - The list of network segments protected by the VPC firewall.
- eni
Lists List<GetVpc Firewall Cens Cen Local Vpc Eni List> - manual
Vswitch StringId - network
Instance StringId - The ID of the VPC instance that created the VPC firewall.
- network
Instance StringName - The name of the network instance.
- network
Instance StringType - The type of the network instance. Value: **VPC * *.
- owner
Id String - The UID of the Alibaba Cloud account to which the VPC belongs.
- region
No String - The region ID of the VPC.
- route
Mode String - Routing mode,. Value:-auto: indicates automatic mode.-manual: indicates manual mode.
- support
Manual StringMode - Whether routing mode supports manual mode. Value:-1: Supported.-0: Not supported.
- transit
Router StringId - transit
Router StringType - The version of the cloud enterprise network forwarding router (CEN-TR). Value:-Basic: Basic Edition.-Enterprise: Enterprise Edition.
- vpc
Cidr List<GetTable Lists Vpc Firewall Cens Cen Local Vpc Vpc Cidr Table List> - The VPC network segment list.
- vpc
Id String - The ID of the VPC instance.
- vpc
Name String - The instance name of the VPC.
- attachment
Id string - attachment
Name string - defend
Cidr string[]Lists - The list of network segments protected by the VPC firewall.
- eni
Lists GetVpc Firewall Cens Cen Local Vpc Eni List[] - manual
Vswitch stringId - network
Instance stringId - The ID of the VPC instance that created the VPC firewall.
- network
Instance stringName - The name of the network instance.
- network
Instance stringType - The type of the network instance. Value: **VPC * *.
- owner
Id string - The UID of the Alibaba Cloud account to which the VPC belongs.
- region
No string - The region ID of the VPC.
- route
Mode string - Routing mode,. Value:-auto: indicates automatic mode.-manual: indicates manual mode.
- support
Manual stringMode - Whether routing mode supports manual mode. Value:-1: Supported.-0: Not supported.
- transit
Router stringId - transit
Router stringType - The version of the cloud enterprise network forwarding router (CEN-TR). Value:-Basic: Basic Edition.-Enterprise: Enterprise Edition.
- vpc
Cidr GetTable Lists Vpc Firewall Cens Cen Local Vpc Vpc Cidr Table List[] - The VPC network segment list.
- vpc
Id string - The ID of the VPC instance.
- vpc
Name string - The instance name of the VPC.
- attachment_
id str - attachment_
name str - defend_
cidr_ Sequence[str]lists - The list of network segments protected by the VPC firewall.
- eni_
lists Sequence[GetVpc Firewall Cens Cen Local Vpc Eni List] - manual_
vswitch_ strid - network_
instance_ strid - The ID of the VPC instance that created the VPC firewall.
- network_
instance_ strname - The name of the network instance.
- network_
instance_ strtype - The type of the network instance. Value: **VPC * *.
- owner_
id str - The UID of the Alibaba Cloud account to which the VPC belongs.
- region_
no str - The region ID of the VPC.
- route_
mode str - Routing mode,. Value:-auto: indicates automatic mode.-manual: indicates manual mode.
- support_
manual_ strmode - Whether routing mode supports manual mode. Value:-1: Supported.-0: Not supported.
- transit_
router_ strid - transit_
router_ strtype - The version of the cloud enterprise network forwarding router (CEN-TR). Value:-Basic: Basic Edition.-Enterprise: Enterprise Edition.
- vpc_
cidr_ Sequence[Gettable_ lists Vpc Firewall Cens Cen Local Vpc Vpc Cidr Table List] - The VPC network segment list.
- vpc_
id str - The ID of the VPC instance.
- vpc_
name str - The instance name of the VPC.
- attachment
Id String - attachment
Name String - defend
Cidr List<String>Lists - The list of network segments protected by the VPC firewall.
- eni
Lists List<Property Map> - manual
Vswitch StringId - network
Instance StringId - The ID of the VPC instance that created the VPC firewall.
- network
Instance StringName - The name of the network instance.
- network
Instance StringType - The type of the network instance. Value: **VPC * *.
- owner
Id String - The UID of the Alibaba Cloud account to which the VPC belongs.
- region
No String - The region ID of the VPC.
- route
Mode String - Routing mode,. Value:-auto: indicates automatic mode.-manual: indicates manual mode.
- support
Manual StringMode - Whether routing mode supports manual mode. Value:-1: Supported.-0: Not supported.
- transit
Router StringId - transit
Router StringType - The version of the cloud enterprise network forwarding router (CEN-TR). Value:-Basic: Basic Edition.-Enterprise: Enterprise Edition.
- vpc
Cidr List<Property Map>Table Lists - The VPC network segment list.
- vpc
Id String - The ID of the VPC instance.
- vpc
Name String - The instance name of the VPC.
GetVpcFirewallCensCenLocalVpcEniList
- Eni
Id string - Eni
Private stringIp Address
- Eni
Id string - Eni
Private stringIp Address
- eni
Id String - eni
Private StringIp Address
- eni
Id string - eni
Private stringIp Address
- eni_
id str - eni_
private_ strip_ address
- eni
Id String - eni
Private StringIp Address
GetVpcFirewallCensCenLocalVpcVpcCidrTableList
- Route
Entry List<Pulumi.Lists Ali Cloud. Cloud Firewall. Inputs. Get Vpc Firewall Cens Cen Local Vpc Vpc Cidr Table List Route Entry List> - The list of route entries in the VPC.
- Route
Table stringId - The ID of the route table of the VPC.
- Route
Entry []GetLists Vpc Firewall Cens Cen Local Vpc Vpc Cidr Table List Route Entry List - The list of route entries in the VPC.
- Route
Table stringId - The ID of the route table of the VPC.
- route
Entry List<GetLists Vpc Firewall Cens Cen Local Vpc Vpc Cidr Table List Route Entry List> - The list of route entries in the VPC.
- route
Table StringId - The ID of the route table of the VPC.
- route
Entry GetLists Vpc Firewall Cens Cen Local Vpc Vpc Cidr Table List Route Entry List[] - The list of route entries in the VPC.
- route
Table stringId - The ID of the route table of the VPC.
- route_
entry_ Sequence[Getlists Vpc Firewall Cens Cen Local Vpc Vpc Cidr Table List Route Entry List] - The list of route entries in the VPC.
- route_
table_ strid - The ID of the route table of the VPC.
- route
Entry List<Property Map>Lists - The list of route entries in the VPC.
- route
Table StringId - The ID of the route table of the VPC.
GetVpcFirewallCensCenLocalVpcVpcCidrTableListRouteEntryList
- Destination
Cidr string - The target network segment of the VPC.
- Next
Hop stringInstance Id - The ID of the next hop instance in the VPC.
- Destination
Cidr string - The target network segment of the VPC.
- Next
Hop stringInstance Id - The ID of the next hop instance in the VPC.
- destination
Cidr String - The target network segment of the VPC.
- next
Hop StringInstance Id - The ID of the next hop instance in the VPC.
- destination
Cidr string - The target network segment of the VPC.
- next
Hop stringInstance Id - The ID of the next hop instance in the VPC.
- destination_
cidr str - The target network segment of the VPC.
- next_
hop_ strinstance_ id - The ID of the next hop instance in the VPC.
- destination
Cidr String - The target network segment of the VPC.
- next
Hop StringInstance Id - The ID of the next hop instance in the VPC.
Package Details
- Repository
- Alibaba Cloud pulumi/pulumi-alicloud
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
alicloudTerraform Provider.
