ibm.getIsNetworkAcls
Explore with Pulumi AI
Retrieve information about an existing Network ACLs. For more information, about Network ACLs, see About network ACLs.
Note:
VPC infrastructure services are a regional specific based endpoint, by default targets to us-south
. Please make sure to target right region in the provider block as shown in the provider.tf
file, if VPC service is created in region other than us-south
.
provider.tf
import * as pulumi from "@pulumi/pulumi";
import pulumi
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
return await Deployment.RunAsync(() =>
{
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
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) {
}
}
{}
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as ibm from "@pulumi/ibm";
const exampleIsVpc = new ibm.IsVpc("exampleIsVpc", {});
const exampleIsNetworkAcl = new ibm.IsNetworkAcl("exampleIsNetworkAcl", {vpc: exampleIsVpc.isVpcId});
const exampleIsNetworkAcls = ibm.getIsNetworkAcls({});
import pulumi
import pulumi_ibm as ibm
example_is_vpc = ibm.IsVpc("exampleIsVpc")
example_is_network_acl = ibm.IsNetworkAcl("exampleIsNetworkAcl", vpc=example_is_vpc.is_vpc_id)
example_is_network_acls = ibm.get_is_network_acls()
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/ibm/ibm"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
exampleIsVpc, err := ibm.NewIsVpc(ctx, "exampleIsVpc", nil)
if err != nil {
return err
}
_, err = ibm.NewIsNetworkAcl(ctx, "exampleIsNetworkAcl", &ibm.IsNetworkAclArgs{
Vpc: exampleIsVpc.IsVpcId,
})
if err != nil {
return err
}
_, err = ibm.GetIsNetworkAcls(ctx, &ibm.GetIsNetworkAclsArgs{}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Ibm = Pulumi.Ibm;
return await Deployment.RunAsync(() =>
{
var exampleIsVpc = new Ibm.IsVpc("exampleIsVpc");
var exampleIsNetworkAcl = new Ibm.IsNetworkAcl("exampleIsNetworkAcl", new()
{
Vpc = exampleIsVpc.IsVpcId,
});
var exampleIsNetworkAcls = Ibm.GetIsNetworkAcls.Invoke();
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.ibm.IsVpc;
import com.pulumi.ibm.IsNetworkAcl;
import com.pulumi.ibm.IsNetworkAclArgs;
import com.pulumi.ibm.IbmFunctions;
import com.pulumi.ibm.inputs.GetIsNetworkAclsArgs;
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) {
var exampleIsVpc = new IsVpc("exampleIsVpc");
var exampleIsNetworkAcl = new IsNetworkAcl("exampleIsNetworkAcl", IsNetworkAclArgs.builder()
.vpc(exampleIsVpc.isVpcId())
.build());
final var exampleIsNetworkAcls = IbmFunctions.getIsNetworkAcls();
}
}
resources:
exampleIsVpc:
type: ibm:IsVpc
exampleIsNetworkAcl:
type: ibm:IsNetworkAcl
properties:
vpc: ${exampleIsVpc.isVpcId}
variables:
exampleIsNetworkAcls:
fn::invoke:
function: ibm:getIsNetworkAcls
arguments: {}
Using getIsNetworkAcls
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 getIsNetworkAcls(args: GetIsNetworkAclsArgs, opts?: InvokeOptions): Promise<GetIsNetworkAclsResult>
function getIsNetworkAclsOutput(args: GetIsNetworkAclsOutputArgs, opts?: InvokeOptions): Output<GetIsNetworkAclsResult>
def get_is_network_acls(id: Optional[str] = None,
resource_group: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetIsNetworkAclsResult
def get_is_network_acls_output(id: Optional[pulumi.Input[str]] = None,
resource_group: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetIsNetworkAclsResult]
func GetIsNetworkAcls(ctx *Context, args *GetIsNetworkAclsArgs, opts ...InvokeOption) (*GetIsNetworkAclsResult, error)
func GetIsNetworkAclsOutput(ctx *Context, args *GetIsNetworkAclsOutputArgs, opts ...InvokeOption) GetIsNetworkAclsResultOutput
> Note: This function is named GetIsNetworkAcls
in the Go SDK.
public static class GetIsNetworkAcls
{
public static Task<GetIsNetworkAclsResult> InvokeAsync(GetIsNetworkAclsArgs args, InvokeOptions? opts = null)
public static Output<GetIsNetworkAclsResult> Invoke(GetIsNetworkAclsInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetIsNetworkAclsResult> getIsNetworkAcls(GetIsNetworkAclsArgs args, InvokeOptions options)
public static Output<GetIsNetworkAclsResult> getIsNetworkAcls(GetIsNetworkAclsArgs args, InvokeOptions options)
fn::invoke:
function: ibm:index/getIsNetworkAcls:getIsNetworkAcls
arguments:
# arguments dictionary
The following arguments are supported:
- Id string
- (String) The unique identifier for this VPC.
- Resource
Group string - Filters the collection to resources within one of the resource groups identified in a comma-separated list of resource group identifiers.
- Id string
- (String) The unique identifier for this VPC.
- Resource
Group string - Filters the collection to resources within one of the resource groups identified in a comma-separated list of resource group identifiers.
- id String
- (String) The unique identifier for this VPC.
- resource
Group String - Filters the collection to resources within one of the resource groups identified in a comma-separated list of resource group identifiers.
- id string
- (String) The unique identifier for this VPC.
- resource
Group string - Filters the collection to resources within one of the resource groups identified in a comma-separated list of resource group identifiers.
- id str
- (String) The unique identifier for this VPC.
- resource_
group str - Filters the collection to resources within one of the resource groups identified in a comma-separated list of resource group identifiers.
- id String
- (String) The unique identifier for this VPC.
- resource
Group String - Filters the collection to resources within one of the resource groups identified in a comma-separated list of resource group identifiers.
getIsNetworkAcls Result
The following output properties are available:
- Id string
- (String) The unique identifier for this VPC.
- Network
Acls List<GetIs Network Acls Network Acl> - (List) Collection of network ACLs.
- Resource
Group string - (List) The resource group object, for this network ACL.
- Id string
- (String) The unique identifier for this VPC.
- Network
Acls []GetIs Network Acls Network Acl - (List) Collection of network ACLs.
- Resource
Group string - (List) The resource group object, for this network ACL.
- id String
- (String) The unique identifier for this VPC.
- network
Acls List<GetIs Network Acls Network Acl> - (List) Collection of network ACLs.
- resource
Group String - (List) The resource group object, for this network ACL.
- id string
- (String) The unique identifier for this VPC.
- network
Acls GetIs Network Acls Network Acl[] - (List) Collection of network ACLs.
- resource
Group string - (List) The resource group object, for this network ACL.
- id str
- (String) The unique identifier for this VPC.
- network_
acls Sequence[GetIs Network Acls Network Acl] - (List) Collection of network ACLs.
- resource_
group str - (List) The resource group object, for this network ACL.
- id String
- (String) The unique identifier for this VPC.
- network
Acls List<Property Map> - (List) Collection of network ACLs.
- resource
Group String - (List) The resource group object, for this network ACL.
Supporting Types
GetIsNetworkAclsNetworkAcl
- List<string>
- Created
At string - (String) The date and time that the network ACL was created.
- Crn string
- (String) The CRN for this VPC.
- Href string
- (String) The URL for this VPC.
- Id string
- (String) The unique identifier for this VPC.
- Name string
- (String) The unique user-defined name for this VPC.
- Resource
Groups List<GetIs Network Acls Network Acl Resource Group> - Filters the collection to resources within one of the resource groups identified in a comma-separated list of resource group identifiers.
- Rules
List<Get
Is Network Acls Network Acl Rule> - (Array of Strings) A list of rules for a network ACL.
- Subnets
List<Get
Is Network Acls Network Acl Subnet> - (List) The subnets to which this network ACL is attached.
- Vpcs
List<Get
Is Network Acls Network Acl Vpc> - (List) The VPC this network ACL is a part of.
- []string
- Created
At string - (String) The date and time that the network ACL was created.
- Crn string
- (String) The CRN for this VPC.
- Href string
- (String) The URL for this VPC.
- Id string
- (String) The unique identifier for this VPC.
- Name string
- (String) The unique user-defined name for this VPC.
- Resource
Groups []GetIs Network Acls Network Acl Resource Group - Filters the collection to resources within one of the resource groups identified in a comma-separated list of resource group identifiers.
- Rules
[]Get
Is Network Acls Network Acl Rule - (Array of Strings) A list of rules for a network ACL.
- Subnets
[]Get
Is Network Acls Network Acl Subnet - (List) The subnets to which this network ACL is attached.
- Vpcs
[]Get
Is Network Acls Network Acl Vpc - (List) The VPC this network ACL is a part of.
- List<String>
- created
At String - (String) The date and time that the network ACL was created.
- crn String
- (String) The CRN for this VPC.
- href String
- (String) The URL for this VPC.
- id String
- (String) The unique identifier for this VPC.
- name String
- (String) The unique user-defined name for this VPC.
- resource
Groups List<GetIs Network Acls Network Acl Resource Group> - Filters the collection to resources within one of the resource groups identified in a comma-separated list of resource group identifiers.
- rules
List<Get
Is Network Acls Network Acl Rule> - (Array of Strings) A list of rules for a network ACL.
- subnets
List<Get
Is Network Acls Network Acl Subnet> - (List) The subnets to which this network ACL is attached.
- vpcs
List<Get
Is Network Acls Network Acl Vpc> - (List) The VPC this network ACL is a part of.
- string[]
- created
At string - (String) The date and time that the network ACL was created.
- crn string
- (String) The CRN for this VPC.
- href string
- (String) The URL for this VPC.
- id string
- (String) The unique identifier for this VPC.
- name string
- (String) The unique user-defined name for this VPC.
- resource
Groups GetIs Network Acls Network Acl Resource Group[] - Filters the collection to resources within one of the resource groups identified in a comma-separated list of resource group identifiers.
- rules
Get
Is Network Acls Network Acl Rule[] - (Array of Strings) A list of rules for a network ACL.
- subnets
Get
Is Network Acls Network Acl Subnet[] - (List) The subnets to which this network ACL is attached.
- vpcs
Get
Is Network Acls Network Acl Vpc[] - (List) The VPC this network ACL is a part of.
- Sequence[str]
- created_
at str - (String) The date and time that the network ACL was created.
- crn str
- (String) The CRN for this VPC.
- href str
- (String) The URL for this VPC.
- id str
- (String) The unique identifier for this VPC.
- name str
- (String) The unique user-defined name for this VPC.
- resource_
groups Sequence[GetIs Network Acls Network Acl Resource Group] - Filters the collection to resources within one of the resource groups identified in a comma-separated list of resource group identifiers.
- rules
Sequence[Get
Is Network Acls Network Acl Rule] - (Array of Strings) A list of rules for a network ACL.
- subnets
Sequence[Get
Is Network Acls Network Acl Subnet] - (List) The subnets to which this network ACL is attached.
- vpcs
Sequence[Get
Is Network Acls Network Acl Vpc] - (List) The VPC this network ACL is a part of.
- List<String>
- created
At String - (String) The date and time that the network ACL was created.
- crn String
- (String) The CRN for this VPC.
- href String
- (String) The URL for this VPC.
- id String
- (String) The unique identifier for this VPC.
- name String
- (String) The unique user-defined name for this VPC.
- resource
Groups List<Property Map> - Filters the collection to resources within one of the resource groups identified in a comma-separated list of resource group identifiers.
- rules List<Property Map>
- (Array of Strings) A list of rules for a network ACL.
- subnets List<Property Map>
- (List) The subnets to which this network ACL is attached.
- vpcs List<Property Map>
- (List) The VPC this network ACL is a part of.
GetIsNetworkAclsNetworkAclResourceGroup
GetIsNetworkAclsNetworkAclRule
- Action string
- (String)
Allow
ordeny
matching network traffic. - Befores
List<Get
Is Network Acls Network Acl Rule Before> - Created
At string - (String) The date and time that the network ACL was created.
- Destination string
- (String) The destination IP address or CIDR block.
- Direction string
- (String) Indicates whether the traffic to be matched is
inbound
oroutbound
. - Href string
- (String) The URL for this VPC.
- Icmps
List<Get
Is Network Acls Network Acl Rule Icmp> - (List) The protocol ICMP.
- Id string
- (String) The unique identifier for this VPC.
- Ip
Version string - Name string
- (String) The unique user-defined name for this VPC.
- Protocol string
- Source string
- (String) The source IP address or CIDR block.
- Tcps
List<Get
Is Network Acls Network Acl Rule Tcp> - (List) The TCP protocol.
- Udps
List<Get
Is Network Acls Network Acl Rule Udp> - (List) The UDP protocol.
- Action string
- (String)
Allow
ordeny
matching network traffic. - Befores
[]Get
Is Network Acls Network Acl Rule Before - Created
At string - (String) The date and time that the network ACL was created.
- Destination string
- (String) The destination IP address or CIDR block.
- Direction string
- (String) Indicates whether the traffic to be matched is
inbound
oroutbound
. - Href string
- (String) The URL for this VPC.
- Icmps
[]Get
Is Network Acls Network Acl Rule Icmp - (List) The protocol ICMP.
- Id string
- (String) The unique identifier for this VPC.
- Ip
Version string - Name string
- (String) The unique user-defined name for this VPC.
- Protocol string
- Source string
- (String) The source IP address or CIDR block.
- Tcps
[]Get
Is Network Acls Network Acl Rule Tcp - (List) The TCP protocol.
- Udps
[]Get
Is Network Acls Network Acl Rule Udp - (List) The UDP protocol.
- action String
- (String)
Allow
ordeny
matching network traffic. - befores
List<Get
Is Network Acls Network Acl Rule Before> - created
At String - (String) The date and time that the network ACL was created.
- destination String
- (String) The destination IP address or CIDR block.
- direction String
- (String) Indicates whether the traffic to be matched is
inbound
oroutbound
. - href String
- (String) The URL for this VPC.
- icmps
List<Get
Is Network Acls Network Acl Rule Icmp> - (List) The protocol ICMP.
- id String
- (String) The unique identifier for this VPC.
- ip
Version String - name String
- (String) The unique user-defined name for this VPC.
- protocol String
- source String
- (String) The source IP address or CIDR block.
- tcps
List<Get
Is Network Acls Network Acl Rule Tcp> - (List) The TCP protocol.
- udps
List<Get
Is Network Acls Network Acl Rule Udp> - (List) The UDP protocol.
- action string
- (String)
Allow
ordeny
matching network traffic. - befores
Get
Is Network Acls Network Acl Rule Before[] - created
At string - (String) The date and time that the network ACL was created.
- destination string
- (String) The destination IP address or CIDR block.
- direction string
- (String) Indicates whether the traffic to be matched is
inbound
oroutbound
. - href string
- (String) The URL for this VPC.
- icmps
Get
Is Network Acls Network Acl Rule Icmp[] - (List) The protocol ICMP.
- id string
- (String) The unique identifier for this VPC.
- ip
Version string - name string
- (String) The unique user-defined name for this VPC.
- protocol string
- source string
- (String) The source IP address or CIDR block.
- tcps
Get
Is Network Acls Network Acl Rule Tcp[] - (List) The TCP protocol.
- udps
Get
Is Network Acls Network Acl Rule Udp[] - (List) The UDP protocol.
- action str
- (String)
Allow
ordeny
matching network traffic. - befores
Sequence[Get
Is Network Acls Network Acl Rule Before] - created_
at str - (String) The date and time that the network ACL was created.
- destination str
- (String) The destination IP address or CIDR block.
- direction str
- (String) Indicates whether the traffic to be matched is
inbound
oroutbound
. - href str
- (String) The URL for this VPC.
- icmps
Sequence[Get
Is Network Acls Network Acl Rule Icmp] - (List) The protocol ICMP.
- id str
- (String) The unique identifier for this VPC.
- ip_
version str - name str
- (String) The unique user-defined name for this VPC.
- protocol str
- source str
- (String) The source IP address or CIDR block.
- tcps
Sequence[Get
Is Network Acls Network Acl Rule Tcp] - (List) The TCP protocol.
- udps
Sequence[Get
Is Network Acls Network Acl Rule Udp] - (List) The UDP protocol.
- action String
- (String)
Allow
ordeny
matching network traffic. - befores List<Property Map>
- created
At String - (String) The date and time that the network ACL was created.
- destination String
- (String) The destination IP address or CIDR block.
- direction String
- (String) Indicates whether the traffic to be matched is
inbound
oroutbound
. - href String
- (String) The URL for this VPC.
- icmps List<Property Map>
- (List) The protocol ICMP.
- id String
- (String) The unique identifier for this VPC.
- ip
Version String - name String
- (String) The unique user-defined name for this VPC.
- protocol String
- source String
- (String) The source IP address or CIDR block.
- tcps List<Property Map>
- (List) The TCP protocol.
- udps List<Property Map>
- (List) The UDP protocol.
GetIsNetworkAclsNetworkAclRuleBefore
- Deleteds
List<Get
Is Network Acls Network Acl Rule Before Deleted> - (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information.
- Href string
- (String) The URL for this VPC.
- Id string
- (String) The unique identifier for this VPC.
- Name string
- (String) The unique user-defined name for this VPC.
- Deleteds
[]Get
Is Network Acls Network Acl Rule Before Deleted - (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information.
- Href string
- (String) The URL for this VPC.
- Id string
- (String) The unique identifier for this VPC.
- Name string
- (String) The unique user-defined name for this VPC.
- deleteds
List<Get
Is Network Acls Network Acl Rule Before Deleted> - (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information.
- href String
- (String) The URL for this VPC.
- id String
- (String) The unique identifier for this VPC.
- name String
- (String) The unique user-defined name for this VPC.
- deleteds
Get
Is Network Acls Network Acl Rule Before Deleted[] - (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information.
- href string
- (String) The URL for this VPC.
- id string
- (String) The unique identifier for this VPC.
- name string
- (String) The unique user-defined name for this VPC.
- deleteds
Sequence[Get
Is Network Acls Network Acl Rule Before Deleted] - (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information.
- href str
- (String) The URL for this VPC.
- id str
- (String) The unique identifier for this VPC.
- name str
- (String) The unique user-defined name for this VPC.
- deleteds List<Property Map>
- (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information.
- href String
- (String) The URL for this VPC.
- id String
- (String) The unique identifier for this VPC.
- name String
- (String) The unique user-defined name for this VPC.
GetIsNetworkAclsNetworkAclRuleBeforeDeleted
- More
Info string - (String) Link to documentation about deleted resources.
- More
Info string - (String) Link to documentation about deleted resources.
- more
Info String - (String) Link to documentation about deleted resources.
- more
Info string - (String) Link to documentation about deleted resources.
- more_
info str - (String) Link to documentation about deleted resources.
- more
Info String - (String) Link to documentation about deleted resources.
GetIsNetworkAclsNetworkAclRuleIcmp
- Code double
- (Integer) The ICMP traffic code to allow. Valid values from 0 to 255. If unspecified, all codes are allowed. This can only be specified if type is also specified.
- Type double
- (Integer) The ICMP traffic type to allow. Valid values from 0 to 254. If unspecified, all types are allowed by this rule.
- Code float64
- (Integer) The ICMP traffic code to allow. Valid values from 0 to 255. If unspecified, all codes are allowed. This can only be specified if type is also specified.
- Type float64
- (Integer) The ICMP traffic type to allow. Valid values from 0 to 254. If unspecified, all types are allowed by this rule.
- code Double
- (Integer) The ICMP traffic code to allow. Valid values from 0 to 255. If unspecified, all codes are allowed. This can only be specified if type is also specified.
- type Double
- (Integer) The ICMP traffic type to allow. Valid values from 0 to 254. If unspecified, all types are allowed by this rule.
- code number
- (Integer) The ICMP traffic code to allow. Valid values from 0 to 255. If unspecified, all codes are allowed. This can only be specified if type is also specified.
- type number
- (Integer) The ICMP traffic type to allow. Valid values from 0 to 254. If unspecified, all types are allowed by this rule.
- code float
- (Integer) The ICMP traffic code to allow. Valid values from 0 to 255. If unspecified, all codes are allowed. This can only be specified if type is also specified.
- type float
- (Integer) The ICMP traffic type to allow. Valid values from 0 to 254. If unspecified, all types are allowed by this rule.
- code Number
- (Integer) The ICMP traffic code to allow. Valid values from 0 to 255. If unspecified, all codes are allowed. This can only be specified if type is also specified.
- type Number
- (Integer) The ICMP traffic type to allow. Valid values from 0 to 254. If unspecified, all types are allowed by this rule.
GetIsNetworkAclsNetworkAclRuleTcp
- Port
Max double - (Integer) The highest port in the range of ports to be matched; if unspecified,
65535
is used. - Port
Min double - (Integer) The lowest port in the range of ports to be matched; if unspecified,
1
is used. - Source
Port doubleMax - (Integer) The highest port in the range of ports to be matched; if unspecified,
65535
is used. - Source
Port doubleMin - (Integer) The lowest port in the range of ports to be matched; if unspecified,
1
is used.
- Port
Max float64 - (Integer) The highest port in the range of ports to be matched; if unspecified,
65535
is used. - Port
Min float64 - (Integer) The lowest port in the range of ports to be matched; if unspecified,
1
is used. - Source
Port float64Max - (Integer) The highest port in the range of ports to be matched; if unspecified,
65535
is used. - Source
Port float64Min - (Integer) The lowest port in the range of ports to be matched; if unspecified,
1
is used.
- port
Max Double - (Integer) The highest port in the range of ports to be matched; if unspecified,
65535
is used. - port
Min Double - (Integer) The lowest port in the range of ports to be matched; if unspecified,
1
is used. - source
Port DoubleMax - (Integer) The highest port in the range of ports to be matched; if unspecified,
65535
is used. - source
Port DoubleMin - (Integer) The lowest port in the range of ports to be matched; if unspecified,
1
is used.
- port
Max number - (Integer) The highest port in the range of ports to be matched; if unspecified,
65535
is used. - port
Min number - (Integer) The lowest port in the range of ports to be matched; if unspecified,
1
is used. - source
Port numberMax - (Integer) The highest port in the range of ports to be matched; if unspecified,
65535
is used. - source
Port numberMin - (Integer) The lowest port in the range of ports to be matched; if unspecified,
1
is used.
- port_
max float - (Integer) The highest port in the range of ports to be matched; if unspecified,
65535
is used. - port_
min float - (Integer) The lowest port in the range of ports to be matched; if unspecified,
1
is used. - source_
port_ floatmax - (Integer) The highest port in the range of ports to be matched; if unspecified,
65535
is used. - source_
port_ floatmin - (Integer) The lowest port in the range of ports to be matched; if unspecified,
1
is used.
- port
Max Number - (Integer) The highest port in the range of ports to be matched; if unspecified,
65535
is used. - port
Min Number - (Integer) The lowest port in the range of ports to be matched; if unspecified,
1
is used. - source
Port NumberMax - (Integer) The highest port in the range of ports to be matched; if unspecified,
65535
is used. - source
Port NumberMin - (Integer) The lowest port in the range of ports to be matched; if unspecified,
1
is used.
GetIsNetworkAclsNetworkAclRuleUdp
- Port
Max double - (Integer) The highest port in the range of ports to be matched; if unspecified,
65535
is used. - Port
Min double - (Integer) The lowest port in the range of ports to be matched; if unspecified,
1
is used. - Source
Port doubleMax - (Integer) The highest port in the range of ports to be matched; if unspecified,
65535
is used. - Source
Port doubleMin - (Integer) The lowest port in the range of ports to be matched; if unspecified,
1
is used.
- Port
Max float64 - (Integer) The highest port in the range of ports to be matched; if unspecified,
65535
is used. - Port
Min float64 - (Integer) The lowest port in the range of ports to be matched; if unspecified,
1
is used. - Source
Port float64Max - (Integer) The highest port in the range of ports to be matched; if unspecified,
65535
is used. - Source
Port float64Min - (Integer) The lowest port in the range of ports to be matched; if unspecified,
1
is used.
- port
Max Double - (Integer) The highest port in the range of ports to be matched; if unspecified,
65535
is used. - port
Min Double - (Integer) The lowest port in the range of ports to be matched; if unspecified,
1
is used. - source
Port DoubleMax - (Integer) The highest port in the range of ports to be matched; if unspecified,
65535
is used. - source
Port DoubleMin - (Integer) The lowest port in the range of ports to be matched; if unspecified,
1
is used.
- port
Max number - (Integer) The highest port in the range of ports to be matched; if unspecified,
65535
is used. - port
Min number - (Integer) The lowest port in the range of ports to be matched; if unspecified,
1
is used. - source
Port numberMax - (Integer) The highest port in the range of ports to be matched; if unspecified,
65535
is used. - source
Port numberMin - (Integer) The lowest port in the range of ports to be matched; if unspecified,
1
is used.
- port_
max float - (Integer) The highest port in the range of ports to be matched; if unspecified,
65535
is used. - port_
min float - (Integer) The lowest port in the range of ports to be matched; if unspecified,
1
is used. - source_
port_ floatmax - (Integer) The highest port in the range of ports to be matched; if unspecified,
65535
is used. - source_
port_ floatmin - (Integer) The lowest port in the range of ports to be matched; if unspecified,
1
is used.
- port
Max Number - (Integer) The highest port in the range of ports to be matched; if unspecified,
65535
is used. - port
Min Number - (Integer) The lowest port in the range of ports to be matched; if unspecified,
1
is used. - source
Port NumberMax - (Integer) The highest port in the range of ports to be matched; if unspecified,
65535
is used. - source
Port NumberMin - (Integer) The lowest port in the range of ports to be matched; if unspecified,
1
is used.
GetIsNetworkAclsNetworkAclSubnet
- Crn string
- (String) The CRN for this VPC.
- Deleteds
List<Get
Is Network Acls Network Acl Subnet Deleted> - (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information.
- Href string
- (String) The URL for this VPC.
- Id string
- (String) The unique identifier for this VPC.
- Name string
- (String) The unique user-defined name for this VPC.
- Crn string
- (String) The CRN for this VPC.
- Deleteds
[]Get
Is Network Acls Network Acl Subnet Deleted - (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information.
- Href string
- (String) The URL for this VPC.
- Id string
- (String) The unique identifier for this VPC.
- Name string
- (String) The unique user-defined name for this VPC.
- crn String
- (String) The CRN for this VPC.
- deleteds
List<Get
Is Network Acls Network Acl Subnet Deleted> - (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information.
- href String
- (String) The URL for this VPC.
- id String
- (String) The unique identifier for this VPC.
- name String
- (String) The unique user-defined name for this VPC.
- crn string
- (String) The CRN for this VPC.
- deleteds
Get
Is Network Acls Network Acl Subnet Deleted[] - (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information.
- href string
- (String) The URL for this VPC.
- id string
- (String) The unique identifier for this VPC.
- name string
- (String) The unique user-defined name for this VPC.
- crn str
- (String) The CRN for this VPC.
- deleteds
Sequence[Get
Is Network Acls Network Acl Subnet Deleted] - (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information.
- href str
- (String) The URL for this VPC.
- id str
- (String) The unique identifier for this VPC.
- name str
- (String) The unique user-defined name for this VPC.
- crn String
- (String) The CRN for this VPC.
- deleteds List<Property Map>
- (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information.
- href String
- (String) The URL for this VPC.
- id String
- (String) The unique identifier for this VPC.
- name String
- (String) The unique user-defined name for this VPC.
GetIsNetworkAclsNetworkAclSubnetDeleted
- More
Info string - (String) Link to documentation about deleted resources.
- More
Info string - (String) Link to documentation about deleted resources.
- more
Info String - (String) Link to documentation about deleted resources.
- more
Info string - (String) Link to documentation about deleted resources.
- more_
info str - (String) Link to documentation about deleted resources.
- more
Info String - (String) Link to documentation about deleted resources.
GetIsNetworkAclsNetworkAclVpc
- Crn string
- (String) The CRN for this VPC.
- Deleteds
List<Get
Is Network Acls Network Acl Vpc Deleted> - (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information.
- Href string
- (String) The URL for this VPC.
- Id string
- (String) The unique identifier for this VPC.
- Name string
- (String) The unique user-defined name for this VPC.
- Crn string
- (String) The CRN for this VPC.
- Deleteds
[]Get
Is Network Acls Network Acl Vpc Deleted - (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information.
- Href string
- (String) The URL for this VPC.
- Id string
- (String) The unique identifier for this VPC.
- Name string
- (String) The unique user-defined name for this VPC.
- crn String
- (String) The CRN for this VPC.
- deleteds
List<Get
Is Network Acls Network Acl Vpc Deleted> - (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information.
- href String
- (String) The URL for this VPC.
- id String
- (String) The unique identifier for this VPC.
- name String
- (String) The unique user-defined name for this VPC.
- crn string
- (String) The CRN for this VPC.
- deleteds
Get
Is Network Acls Network Acl Vpc Deleted[] - (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information.
- href string
- (String) The URL for this VPC.
- id string
- (String) The unique identifier for this VPC.
- name string
- (String) The unique user-defined name for this VPC.
- crn str
- (String) The CRN for this VPC.
- deleteds
Sequence[Get
Is Network Acls Network Acl Vpc Deleted] - (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information.
- href str
- (String) The URL for this VPC.
- id str
- (String) The unique identifier for this VPC.
- name str
- (String) The unique user-defined name for this VPC.
- crn String
- (String) The CRN for this VPC.
- deleteds List<Property Map>
- (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information.
- href String
- (String) The URL for this VPC.
- id String
- (String) The unique identifier for this VPC.
- name String
- (String) The unique user-defined name for this VPC.
GetIsNetworkAclsNetworkAclVpcDeleted
- More
Info string - (String) Link to documentation about deleted resources.
- More
Info string - (String) Link to documentation about deleted resources.
- more
Info String - (String) Link to documentation about deleted resources.
- more
Info string - (String) Link to documentation about deleted resources.
- more_
info str - (String) Link to documentation about deleted resources.
- more
Info String - (String) Link to documentation about deleted resources.
Package Details
- Repository
- ibm ibm-cloud/terraform-provider-ibm
- License
- Notes
- This Pulumi package is based on the
ibm
Terraform Provider.