Alibaba Cloud v3.76.0 published on Tuesday, Apr 8, 2025 by Pulumi
alicloud.cloudfirewall.getVpcFirewallCens
Explore with Pulumi AI
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 dictionary
The following arguments are supported:
- Cen
Id Changes to this property will trigger replacement.
- The ID of the CEN instance.
- Ids List<string>
- A list of Vpc Firewall Cen IDs.
- Lang
Changes to this property will trigger replacement.
- The language type of the requested and received messages. Value:-zh (default): Chinese.-en: English.
- Member
Uid Changes to this property will trigger replacement.
- The UID of the member account (other Alibaba Cloud account) of the current Alibaba cloud account.
- Network
Instance Id Changes to this property will trigger replacement.
- 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
Changes to this property will trigger replacement.
- Firewall switch status
- Vpc
Firewall Id Changes to this property will trigger replacement.
- VPC firewall ID
- Vpc
Firewall Name Changes to this property will trigger replacement.
- The name of the VPC firewall instance.
- Cen
Id Changes to this property will trigger replacement.
- The ID of the CEN instance.
- Ids []string
- A list of Vpc Firewall Cen IDs.
- Lang
Changes to this property will trigger replacement.
- The language type of the requested and received messages. Value:-zh (default): Chinese.-en: English.
- Member
Uid Changes to this property will trigger replacement.
- The UID of the member account (other Alibaba Cloud account) of the current Alibaba cloud account.
- Network
Instance Id Changes to this property will trigger replacement.
- 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
Changes to this property will trigger replacement.
- Firewall switch status
- Vpc
Firewall Id Changes to this property will trigger replacement.
- VPC firewall ID
- Vpc
Firewall Name Changes to this property will trigger replacement.
- The name of the VPC firewall instance.
- cen
Id Changes to this property will trigger replacement.
- The ID of the CEN instance.
- ids List<String>
- A list of Vpc Firewall Cen IDs.
- lang
Changes to this property will trigger replacement.
- The language type of the requested and received messages. Value:-zh (default): Chinese.-en: English.
- member
Uid Changes to this property will trigger replacement.
- The UID of the member account (other Alibaba Cloud account) of the current Alibaba cloud account.
- network
Instance Id Changes to this property will trigger replacement.
- 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
Changes to this property will trigger replacement.
- Firewall switch status
- vpc
Firewall Id Changes to this property will trigger replacement.
- VPC firewall ID
- vpc
Firewall Name Changes to this property will trigger replacement.
- The name of the VPC firewall instance.
- cen
Id Changes to this property will trigger replacement.
- The ID of the CEN instance.
- ids string[]
- A list of Vpc Firewall Cen IDs.
- lang
Changes to this property will trigger replacement.
- The language type of the requested and received messages. Value:-zh (default): Chinese.-en: English.
- member
Uid Changes to this property will trigger replacement.
- The UID of the member account (other Alibaba Cloud account) of the current Alibaba cloud account.
- network
Instance Id Changes to this property will trigger replacement.
- 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
Changes to this property will trigger replacement.
- Firewall switch status
- vpc
Firewall Id Changes to this property will trigger replacement.
- VPC firewall ID
- vpc
Firewall Name Changes to this property will trigger replacement.
- The name of the VPC firewall instance.
- cen_
id Changes to this property will trigger replacement.
- The ID of the CEN instance.
- ids Sequence[str]
- A list of Vpc Firewall Cen IDs.
- lang
Changes to this property will trigger replacement.
- The language type of the requested and received messages. Value:-zh (default): Chinese.-en: English.
- member_
uid Changes to this property will trigger replacement.
- The UID of the member account (other Alibaba Cloud account) of the current Alibaba cloud account.
- network_
instance_ id Changes to this property will trigger replacement.
- 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
Changes to this property will trigger replacement.
- Firewall switch status
- vpc_
firewall_ id Changes to this property will trigger replacement.
- VPC firewall ID
- vpc_
firewall_ name Changes to this property will trigger replacement.
- The name of the VPC firewall instance.
- cen
Id Changes to this property will trigger replacement.
- The ID of the CEN instance.
- ids List<String>
- A list of Vpc Firewall Cen IDs.
- lang
Changes to this property will trigger replacement.
- The language type of the requested and received messages. Value:-zh (default): Chinese.-en: English.
- member
Uid Changes to this property will trigger replacement.
- The UID of the member account (other Alibaba Cloud account) of the current Alibaba cloud account.
- network
Instance Id Changes to this property will trigger replacement.
- 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
Changes to this property will trigger replacement.
- Firewall switch status
- vpc
Firewall Id Changes to this property will trigger replacement.
- VPC firewall ID
- vpc
Firewall Name Changes to this property will trigger replacement.
- 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 This property is required. string - The ID of the CEN instance.
- Connect
Type This property is required. string - Intercommunication type, value:
expressconnect
: Express Channelcen
: Cloud Enterprise Network - Id
This property is required. string - The ID of the CEN instance.
- Local
Vpcs This property is required. List<Pulumi.Ali Cloud. Cloud Firewall. Inputs. Get Vpc Firewall Cens Cen Local Vpc> - The details of the VPC.
- Network
Instance Id This property is required. string - The ID of the VPC instance that created the VPC firewall.
- Status
This property is required. string - Firewall switch status
- Vpc
Firewall Id This property is required. string - VPC firewall ID
- Vpc
Firewall Name This property is required. string - The name of the VPC firewall instance.
- Cen
Id This property is required. string - The ID of the CEN instance.
- Connect
Type This property is required. string - Intercommunication type, value:
expressconnect
: Express Channelcen
: Cloud Enterprise Network - Id
This property is required. string - The ID of the CEN instance.
- Local
Vpcs This property is required. []GetVpc Firewall Cens Cen Local Vpc - The details of the VPC.
- Network
Instance Id This property is required. string - The ID of the VPC instance that created the VPC firewall.
- Status
This property is required. string - Firewall switch status
- Vpc
Firewall Id This property is required. string - VPC firewall ID
- Vpc
Firewall Name This property is required. string - The name of the VPC firewall instance.
- cen
Id This property is required. String - The ID of the CEN instance.
- connect
Type This property is required. String - Intercommunication type, value:
expressconnect
: Express Channelcen
: Cloud Enterprise Network - id
This property is required. String - The ID of the CEN instance.
- local
Vpcs This property is required. List<GetVpc Firewall Cens Cen Local Vpc> - The details of the VPC.
- network
Instance Id This property is required. String - The ID of the VPC instance that created the VPC firewall.
- status
This property is required. String - Firewall switch status
- vpc
Firewall Id This property is required. String - VPC firewall ID
- vpc
Firewall Name This property is required. String - The name of the VPC firewall instance.
- cen
Id This property is required. string - The ID of the CEN instance.
- connect
Type This property is required. string - Intercommunication type, value:
expressconnect
: Express Channelcen
: Cloud Enterprise Network - id
This property is required. string - The ID of the CEN instance.
- local
Vpcs This property is required. GetVpc Firewall Cens Cen Local Vpc[] - The details of the VPC.
- network
Instance Id This property is required. string - The ID of the VPC instance that created the VPC firewall.
- status
This property is required. string - Firewall switch status
- vpc
Firewall Id This property is required. string - VPC firewall ID
- vpc
Firewall Name This property is required. string - The name of the VPC firewall instance.
- cen_
id This property is required. str - The ID of the CEN instance.
- connect_
type This property is required. str - Intercommunication type, value:
expressconnect
: Express Channelcen
: Cloud Enterprise Network - id
This property is required. str - The ID of the CEN instance.
- local_
vpcs This property is required. Sequence[GetVpc Firewall Cens Cen Local Vpc] - The details of the VPC.
- network_
instance_ id This property is required. str - The ID of the VPC instance that created the VPC firewall.
- status
This property is required. str - Firewall switch status
- vpc_
firewall_ id This property is required. str - VPC firewall ID
- vpc_
firewall_ name This property is required. str - The name of the VPC firewall instance.
- cen
Id This property is required. String - The ID of the CEN instance.
- connect
Type This property is required. String - Intercommunication type, value:
expressconnect
: Express Channelcen
: Cloud Enterprise Network - id
This property is required. String - The ID of the CEN instance.
- local
Vpcs This property is required. List<Property Map> - The details of the VPC.
- network
Instance Id This property is required. String - The ID of the VPC instance that created the VPC firewall.
- status
This property is required. String - Firewall switch status
- vpc
Firewall Id This property is required. String - VPC firewall ID
- vpc
Firewall Name This property is required. String - The name of the VPC firewall instance.
GetVpcFirewallCensCenLocalVpc
- Attachment
Id This property is required. string - Attachment
Name This property is required. string - Defend
Cidr Lists This property is required. List<string> - The list of network segments protected by the VPC firewall.
- Eni
Lists This property is required. List<Pulumi.Ali Cloud. Cloud Firewall. Inputs. Get Vpc Firewall Cens Cen Local Vpc Eni List> - Manual
Vswitch Id This property is required. string - Network
Instance Id This property is required. string - The ID of the VPC instance that created the VPC firewall.
- Network
Instance Name This property is required. string - The name of the network instance.
- Network
Instance Type This property is required. string - The type of the network instance. Value: **VPC * *.
- Owner
Id This property is required. string - The UID of the Alibaba Cloud account to which the VPC belongs.
- Region
No This property is required. string - The region ID of the VPC.
- Route
Mode This property is required. string - Routing mode,. Value:-auto: indicates automatic mode.-manual: indicates manual mode.
- Support
Manual Mode This property is required. string - Whether routing mode supports manual mode. Value:-1: Supported.-0: Not supported.
- Transit
Router Id This property is required. string - Transit
Router Type This property is required. string - The version of the cloud enterprise network forwarding router (CEN-TR). Value:-Basic: Basic Edition.-Enterprise: Enterprise Edition.
- Vpc
Cidr Table Lists This property is required. List<Pulumi.Ali Cloud. Cloud Firewall. Inputs. Get Vpc Firewall Cens Cen Local Vpc Vpc Cidr Table List> - The VPC network segment list.
- Vpc
Id This property is required. string - The ID of the VPC instance.
- Vpc
Name This property is required. string - The instance name of the VPC.
- Attachment
Id This property is required. string - Attachment
Name This property is required. string - Defend
Cidr Lists This property is required. []string - The list of network segments protected by the VPC firewall.
- Eni
Lists This property is required. []GetVpc Firewall Cens Cen Local Vpc Eni List - Manual
Vswitch Id This property is required. string - Network
Instance Id This property is required. string - The ID of the VPC instance that created the VPC firewall.
- Network
Instance Name This property is required. string - The name of the network instance.
- Network
Instance Type This property is required. string - The type of the network instance. Value: **VPC * *.
- Owner
Id This property is required. string - The UID of the Alibaba Cloud account to which the VPC belongs.
- Region
No This property is required. string - The region ID of the VPC.
- Route
Mode This property is required. string - Routing mode,. Value:-auto: indicates automatic mode.-manual: indicates manual mode.
- Support
Manual Mode This property is required. string - Whether routing mode supports manual mode. Value:-1: Supported.-0: Not supported.
- Transit
Router Id This property is required. string - Transit
Router Type This property is required. string - The version of the cloud enterprise network forwarding router (CEN-TR). Value:-Basic: Basic Edition.-Enterprise: Enterprise Edition.
- Vpc
Cidr Table Lists This property is required. []GetVpc Firewall Cens Cen Local Vpc Vpc Cidr Table List - The VPC network segment list.
- Vpc
Id This property is required. string - The ID of the VPC instance.
- Vpc
Name This property is required. string - The instance name of the VPC.
- attachment
Id This property is required. String - attachment
Name This property is required. String - defend
Cidr Lists This property is required. List<String> - The list of network segments protected by the VPC firewall.
- eni
Lists This property is required. List<GetVpc Firewall Cens Cen Local Vpc Eni List> - manual
Vswitch Id This property is required. String - network
Instance Id This property is required. String - The ID of the VPC instance that created the VPC firewall.
- network
Instance Name This property is required. String - The name of the network instance.
- network
Instance Type This property is required. String - The type of the network instance. Value: **VPC * *.
- owner
Id This property is required. String - The UID of the Alibaba Cloud account to which the VPC belongs.
- region
No This property is required. String - The region ID of the VPC.
- route
Mode This property is required. String - Routing mode,. Value:-auto: indicates automatic mode.-manual: indicates manual mode.
- support
Manual Mode This property is required. String - Whether routing mode supports manual mode. Value:-1: Supported.-0: Not supported.
- transit
Router Id This property is required. String - transit
Router Type This property is required. String - The version of the cloud enterprise network forwarding router (CEN-TR). Value:-Basic: Basic Edition.-Enterprise: Enterprise Edition.
- vpc
Cidr Table Lists This property is required. List<GetVpc Firewall Cens Cen Local Vpc Vpc Cidr Table List> - The VPC network segment list.
- vpc
Id This property is required. String - The ID of the VPC instance.
- vpc
Name This property is required. String - The instance name of the VPC.
- attachment
Id This property is required. string - attachment
Name This property is required. string - defend
Cidr Lists This property is required. string[] - The list of network segments protected by the VPC firewall.
- eni
Lists This property is required. GetVpc Firewall Cens Cen Local Vpc Eni List[] - manual
Vswitch Id This property is required. string - network
Instance Id This property is required. string - The ID of the VPC instance that created the VPC firewall.
- network
Instance Name This property is required. string - The name of the network instance.
- network
Instance Type This property is required. string - The type of the network instance. Value: **VPC * *.
- owner
Id This property is required. string - The UID of the Alibaba Cloud account to which the VPC belongs.
- region
No This property is required. string - The region ID of the VPC.
- route
Mode This property is required. string - Routing mode,. Value:-auto: indicates automatic mode.-manual: indicates manual mode.
- support
Manual Mode This property is required. string - Whether routing mode supports manual mode. Value:-1: Supported.-0: Not supported.
- transit
Router Id This property is required. string - transit
Router Type This property is required. string - The version of the cloud enterprise network forwarding router (CEN-TR). Value:-Basic: Basic Edition.-Enterprise: Enterprise Edition.
- vpc
Cidr Table Lists This property is required. GetVpc Firewall Cens Cen Local Vpc Vpc Cidr Table List[] - The VPC network segment list.
- vpc
Id This property is required. string - The ID of the VPC instance.
- vpc
Name This property is required. string - The instance name of the VPC.
- attachment_
id This property is required. str - attachment_
name This property is required. str - defend_
cidr_ lists This property is required. Sequence[str] - The list of network segments protected by the VPC firewall.
- eni_
lists This property is required. Sequence[GetVpc Firewall Cens Cen Local Vpc Eni List] - manual_
vswitch_ id This property is required. str - network_
instance_ id This property is required. str - The ID of the VPC instance that created the VPC firewall.
- network_
instance_ name This property is required. str - The name of the network instance.
- network_
instance_ type This property is required. str - The type of the network instance. Value: **VPC * *.
- owner_
id This property is required. str - The UID of the Alibaba Cloud account to which the VPC belongs.
- region_
no This property is required. str - The region ID of the VPC.
- route_
mode This property is required. str - Routing mode,. Value:-auto: indicates automatic mode.-manual: indicates manual mode.
- support_
manual_ mode This property is required. str - Whether routing mode supports manual mode. Value:-1: Supported.-0: Not supported.
- transit_
router_ id This property is required. str - transit_
router_ type This property is required. str - The version of the cloud enterprise network forwarding router (CEN-TR). Value:-Basic: Basic Edition.-Enterprise: Enterprise Edition.
- vpc_
cidr_ table_ lists This property is required. Sequence[GetVpc Firewall Cens Cen Local Vpc Vpc Cidr Table List] - The VPC network segment list.
- vpc_
id This property is required. str - The ID of the VPC instance.
- vpc_
name This property is required. str - The instance name of the VPC.
- attachment
Id This property is required. String - attachment
Name This property is required. String - defend
Cidr Lists This property is required. List<String> - The list of network segments protected by the VPC firewall.
- eni
Lists This property is required. List<Property Map> - manual
Vswitch Id This property is required. String - network
Instance Id This property is required. String - The ID of the VPC instance that created the VPC firewall.
- network
Instance Name This property is required. String - The name of the network instance.
- network
Instance Type This property is required. String - The type of the network instance. Value: **VPC * *.
- owner
Id This property is required. String - The UID of the Alibaba Cloud account to which the VPC belongs.
- region
No This property is required. String - The region ID of the VPC.
- route
Mode This property is required. String - Routing mode,. Value:-auto: indicates automatic mode.-manual: indicates manual mode.
- support
Manual Mode This property is required. String - Whether routing mode supports manual mode. Value:-1: Supported.-0: Not supported.
- transit
Router Id This property is required. String - transit
Router Type This property is required. String - The version of the cloud enterprise network forwarding router (CEN-TR). Value:-Basic: Basic Edition.-Enterprise: Enterprise Edition.
- vpc
Cidr Table Lists This property is required. List<Property Map> - The VPC network segment list.
- vpc
Id This property is required. String - The ID of the VPC instance.
- vpc
Name This property is required. String - The instance name of the VPC.
GetVpcFirewallCensCenLocalVpcEniList
- Eni
Id This property is required. string - Eni
Private Ip Address This property is required. string
- Eni
Id This property is required. string - Eni
Private Ip Address This property is required. string
- eni
Id This property is required. String - eni
Private Ip Address This property is required. String
- eni
Id This property is required. string - eni
Private Ip Address This property is required. string
- eni_
id This property is required. str - eni_
private_ ip_ address This property is required. str
- eni
Id This property is required. String - eni
Private Ip Address This property is required. String
GetVpcFirewallCensCenLocalVpcVpcCidrTableList
- Route
Entry Lists This property is required. List<Pulumi.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 Id This property is required. string - The ID of the route table of the VPC.
- Route
Entry Lists This property is required. []GetVpc Firewall Cens Cen Local Vpc Vpc Cidr Table List Route Entry List - The list of route entries in the VPC.
- Route
Table Id This property is required. string - The ID of the route table of the VPC.
- route
Entry Lists This property is required. List<GetVpc Firewall Cens Cen Local Vpc Vpc Cidr Table List Route Entry List> - The list of route entries in the VPC.
- route
Table Id This property is required. String - The ID of the route table of the VPC.
- route
Entry Lists This property is required. GetVpc Firewall Cens Cen Local Vpc Vpc Cidr Table List Route Entry List[] - The list of route entries in the VPC.
- route
Table Id This property is required. string - The ID of the route table of the VPC.
- route_
entry_ lists This property is required. Sequence[GetVpc Firewall Cens Cen Local Vpc Vpc Cidr Table List Route Entry List] - The list of route entries in the VPC.
- route_
table_ id This property is required. str - The ID of the route table of the VPC.
- route
Entry Lists This property is required. List<Property Map> - The list of route entries in the VPC.
- route
Table Id This property is required. String - The ID of the route table of the VPC.
GetVpcFirewallCensCenLocalVpcVpcCidrTableListRouteEntryList
- Destination
Cidr This property is required. string - The target network segment of the VPC.
- Next
Hop Instance Id This property is required. string - The ID of the next hop instance in the VPC.
- Destination
Cidr This property is required. string - The target network segment of the VPC.
- Next
Hop Instance Id This property is required. string - The ID of the next hop instance in the VPC.
- destination
Cidr This property is required. String - The target network segment of the VPC.
- next
Hop Instance Id This property is required. String - The ID of the next hop instance in the VPC.
- destination
Cidr This property is required. string - The target network segment of the VPC.
- next
Hop Instance Id This property is required. string - The ID of the next hop instance in the VPC.
- destination_
cidr This property is required. str - The target network segment of the VPC.
- next_
hop_ instance_ id This property is required. str - The ID of the next hop instance in the VPC.
- destination
Cidr This property is required. String - The target network segment of the VPC.
- next
Hop Instance Id This property is required. String - 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
alicloud
Terraform Provider.