1. Packages
  2. Constellix Provider
  3. API Docs
  4. GeoFilter
constellix 0.4.6 published on Friday, Mar 7, 2025 by constellix

constellix.GeoFilter

Explore with Pulumi AI

constellix logo
constellix 0.4.6 published on Friday, Mar 7, 2025 by constellix

    Create GeoFilter Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new GeoFilter(name: string, args?: GeoFilterArgs, opts?: CustomResourceOptions);
    @overload
    def GeoFilter(resource_name: str,
                  args: Optional[GeoFilterArgs] = None,
                  opts: Optional[ResourceOptions] = None)
    
    @overload
    def GeoFilter(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  asns: Optional[Sequence[float]] = None,
                  filter_rules_limit: Optional[float] = None,
                  geo_filter_id: Optional[str] = None,
                  geoip_continents: Optional[Sequence[str]] = None,
                  geoip_countries: Optional[Sequence[str]] = None,
                  geoip_regions: Optional[Sequence[str]] = None,
                  ipv4s: Optional[Sequence[str]] = None,
                  ipv6s: Optional[Sequence[str]] = None,
                  name: Optional[str] = None)
    func NewGeoFilter(ctx *Context, name string, args *GeoFilterArgs, opts ...ResourceOption) (*GeoFilter, error)
    public GeoFilter(string name, GeoFilterArgs? args = null, CustomResourceOptions? opts = null)
    public GeoFilter(String name, GeoFilterArgs args)
    public GeoFilter(String name, GeoFilterArgs args, CustomResourceOptions options)
    
    type: constellix:GeoFilter
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args GeoFilterArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args GeoFilterArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args GeoFilterArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args GeoFilterArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args GeoFilterArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var geoFilterResource = new Constellix.GeoFilter("geoFilterResource", new()
    {
        Asns = new[]
        {
            0,
        },
        FilterRulesLimit = 0,
        GeoFilterId = "string",
        GeoipContinents = new[]
        {
            "string",
        },
        GeoipCountries = new[]
        {
            "string",
        },
        GeoipRegions = new[]
        {
            "string",
        },
        Ipv4s = new[]
        {
            "string",
        },
        Ipv6s = new[]
        {
            "string",
        },
        Name = "string",
    });
    
    example, err := constellix.NewGeoFilter(ctx, "geoFilterResource", &constellix.GeoFilterArgs{
    Asns: pulumi.Float64Array{
    pulumi.Float64(0),
    },
    FilterRulesLimit: pulumi.Float64(0),
    GeoFilterId: pulumi.String("string"),
    GeoipContinents: pulumi.StringArray{
    pulumi.String("string"),
    },
    GeoipCountries: pulumi.StringArray{
    pulumi.String("string"),
    },
    GeoipRegions: pulumi.StringArray{
    pulumi.String("string"),
    },
    Ipv4s: pulumi.StringArray{
    pulumi.String("string"),
    },
    Ipv6s: pulumi.StringArray{
    pulumi.String("string"),
    },
    Name: pulumi.String("string"),
    })
    
    var geoFilterResource = new GeoFilter("geoFilterResource", GeoFilterArgs.builder()
        .asns(0)
        .filterRulesLimit(0)
        .geoFilterId("string")
        .geoipContinents("string")
        .geoipCountries("string")
        .geoipRegions("string")
        .ipv4s("string")
        .ipv6s("string")
        .name("string")
        .build());
    
    geo_filter_resource = constellix.GeoFilter("geoFilterResource",
        asns=[0],
        filter_rules_limit=0,
        geo_filter_id="string",
        geoip_continents=["string"],
        geoip_countries=["string"],
        geoip_regions=["string"],
        ipv4s=["string"],
        ipv6s=["string"],
        name="string")
    
    const geoFilterResource = new constellix.GeoFilter("geoFilterResource", {
        asns: [0],
        filterRulesLimit: 0,
        geoFilterId: "string",
        geoipContinents: ["string"],
        geoipCountries: ["string"],
        geoipRegions: ["string"],
        ipv4s: ["string"],
        ipv6s: ["string"],
        name: "string",
    });
    
    type: constellix:GeoFilter
    properties:
        asns:
            - 0
        filterRulesLimit: 0
        geoFilterId: string
        geoipContinents:
            - string
        geoipCountries:
            - string
        geoipRegions:
            - string
        ipv4s:
            - string
        ipv6s:
            - string
        name: string
    

    GeoFilter Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The GeoFilter resource accepts the following input properties:

    Asns List<double>
    FilterRulesLimit double
    GeoFilterId string
    The constellix calculated id of the Geo Filter.
    GeoipContinents List<string>
    GeoipCountries List<string>
    GeoipRegions List<string>
    Ipv4s List<string>
    Ipv6s List<string>
    Name string
    Asns []float64
    FilterRulesLimit float64
    GeoFilterId string
    The constellix calculated id of the Geo Filter.
    GeoipContinents []string
    GeoipCountries []string
    GeoipRegions []string
    Ipv4s []string
    Ipv6s []string
    Name string
    asns List<Double>
    filterRulesLimit Double
    geoFilterId String
    The constellix calculated id of the Geo Filter.
    geoipContinents List<String>
    geoipCountries List<String>
    geoipRegions List<String>
    ipv4s List<String>
    ipv6s List<String>
    name String
    asns number[]
    filterRulesLimit number
    geoFilterId string
    The constellix calculated id of the Geo Filter.
    geoipContinents string[]
    geoipCountries string[]
    geoipRegions string[]
    ipv4s string[]
    ipv6s string[]
    name string
    asns Sequence[float]
    filter_rules_limit float
    geo_filter_id str
    The constellix calculated id of the Geo Filter.
    geoip_continents Sequence[str]
    geoip_countries Sequence[str]
    geoip_regions Sequence[str]
    ipv4s Sequence[str]
    ipv6s Sequence[str]
    name str
    asns List<Number>
    filterRulesLimit Number
    geoFilterId String
    The constellix calculated id of the Geo Filter.
    geoipContinents List<String>
    geoipCountries List<String>
    geoipRegions List<String>
    ipv4s List<String>
    ipv6s List<String>
    name String

    Outputs

    All input properties are implicitly available as output properties. Additionally, the GeoFilter resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing GeoFilter Resource

    Get an existing GeoFilter resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: GeoFilterState, opts?: CustomResourceOptions): GeoFilter
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            asns: Optional[Sequence[float]] = None,
            filter_rules_limit: Optional[float] = None,
            geo_filter_id: Optional[str] = None,
            geoip_continents: Optional[Sequence[str]] = None,
            geoip_countries: Optional[Sequence[str]] = None,
            geoip_regions: Optional[Sequence[str]] = None,
            ipv4s: Optional[Sequence[str]] = None,
            ipv6s: Optional[Sequence[str]] = None,
            name: Optional[str] = None) -> GeoFilter
    func GetGeoFilter(ctx *Context, name string, id IDInput, state *GeoFilterState, opts ...ResourceOption) (*GeoFilter, error)
    public static GeoFilter Get(string name, Input<string> id, GeoFilterState? state, CustomResourceOptions? opts = null)
    public static GeoFilter get(String name, Output<String> id, GeoFilterState state, CustomResourceOptions options)
    resources:  _:    type: constellix:GeoFilter    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Asns List<double>
    FilterRulesLimit double
    GeoFilterId string
    The constellix calculated id of the Geo Filter.
    GeoipContinents List<string>
    GeoipCountries List<string>
    GeoipRegions List<string>
    Ipv4s List<string>
    Ipv6s List<string>
    Name string
    Asns []float64
    FilterRulesLimit float64
    GeoFilterId string
    The constellix calculated id of the Geo Filter.
    GeoipContinents []string
    GeoipCountries []string
    GeoipRegions []string
    Ipv4s []string
    Ipv6s []string
    Name string
    asns List<Double>
    filterRulesLimit Double
    geoFilterId String
    The constellix calculated id of the Geo Filter.
    geoipContinents List<String>
    geoipCountries List<String>
    geoipRegions List<String>
    ipv4s List<String>
    ipv6s List<String>
    name String
    asns number[]
    filterRulesLimit number
    geoFilterId string
    The constellix calculated id of the Geo Filter.
    geoipContinents string[]
    geoipCountries string[]
    geoipRegions string[]
    ipv4s string[]
    ipv6s string[]
    name string
    asns Sequence[float]
    filter_rules_limit float
    geo_filter_id str
    The constellix calculated id of the Geo Filter.
    geoip_continents Sequence[str]
    geoip_countries Sequence[str]
    geoip_regions Sequence[str]
    ipv4s Sequence[str]
    ipv6s Sequence[str]
    name str
    asns List<Number>
    filterRulesLimit Number
    geoFilterId String
    The constellix calculated id of the Geo Filter.
    geoipContinents List<String>
    geoipCountries List<String>
    geoipRegions List<String>
    ipv4s List<String>
    ipv6s List<String>
    name String

    Package Details

    Repository
    constellix constellix/terraform-provider-constellix
    License
    Notes
    This Pulumi package is based on the constellix Terraform Provider.
    constellix logo
    constellix 0.4.6 published on Friday, Mar 7, 2025 by constellix