equinix.fabric.RouteFilterRule
Explore with Pulumi AI
Fabric V4 API compatible resource allows creation and management of Equinix Fabric Route Filter Rule
Additional Documentation:
- Getting Started: https://docs.equinix.com/en-us/Content/Interconnection/FCR/FCR-route-filters.htm
- API: https://developer.equinix.com/dev-docs/fabric/api-reference/fabric-v4-apis#route-filter-rules
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as equinix from "@equinix-labs/pulumi-equinix";
const rfRule = new equinix.fabric.RouteFilterRule("rfRule", {
routeFilterId: "<route_filter_policy_id>",
prefix: "192.168.0.0/24",
prefixMatch: "exact",
description: "Route Filter Rule for X Purpose",
});
export const routeFilterRuleId = rfRule.id;
export const routeFilterId = rfRule.routeFilterId;
export const routeFilterRulePrefix = rfRule.prefix;
export const routeFilterRulePrefixMatch = rfRule.prefixMatch;
import pulumi
import pulumi_equinix as equinix
rf_rule = equinix.fabric.RouteFilterRule("rfRule",
route_filter_id="<route_filter_policy_id>",
prefix="192.168.0.0/24",
prefix_match="exact",
description="Route Filter Rule for X Purpose")
pulumi.export("routeFilterRuleId", rf_rule.id)
pulumi.export("routeFilterId", rf_rule.route_filter_id)
pulumi.export("routeFilterRulePrefix", rf_rule.prefix)
pulumi.export("routeFilterRulePrefixMatch", rf_rule.prefix_match)
package main
import (
"github.com/equinix/pulumi-equinix/sdk/go/equinix/fabric"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
rfRule, err := fabric.NewRouteFilterRule(ctx, "rfRule", &fabric.RouteFilterRuleArgs{
RouteFilterId: pulumi.String("<route_filter_policy_id>"),
Prefix: pulumi.String("192.168.0.0/24"),
PrefixMatch: pulumi.String("exact"),
Description: pulumi.String("Route Filter Rule for X Purpose"),
})
if err != nil {
return err
}
ctx.Export("routeFilterRuleId", rfRule.ID())
ctx.Export("routeFilterId", rfRule.RouteFilterId)
ctx.Export("routeFilterRulePrefix", rfRule.Prefix)
ctx.Export("routeFilterRulePrefixMatch", rfRule.PrefixMatch)
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Equinix = Pulumi.Equinix;
return await Deployment.RunAsync(() =>
{
var rfRule = new Equinix.Fabric.RouteFilterRule("rfRule", new()
{
RouteFilterId = "<route_filter_policy_id>",
Prefix = "192.168.0.0/24",
PrefixMatch = "exact",
Description = "Route Filter Rule for X Purpose",
});
return new Dictionary<string, object?>
{
["routeFilterRuleId"] = rfRule.Id,
["routeFilterId"] = rfRule.RouteFilterId,
["routeFilterRulePrefix"] = rfRule.Prefix,
["routeFilterRulePrefixMatch"] = rfRule.PrefixMatch,
};
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.equinix.fabric.RouteFilterRule;
import com.pulumi.equinix.fabric.RouteFilterRuleArgs;
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 rfRule = new RouteFilterRule("rfRule", RouteFilterRuleArgs.builder()
.routeFilterId("<route_filter_policy_id>")
.prefix("192.168.0.0/24")
.prefixMatch("exact")
.description("Route Filter Rule for X Purpose")
.build());
ctx.export("routeFilterRuleId", rfRule.id());
ctx.export("routeFilterId", rfRule.routeFilterId());
ctx.export("routeFilterRulePrefix", rfRule.prefix());
ctx.export("routeFilterRulePrefixMatch", rfRule.prefixMatch());
}
}
resources:
rfRule:
type: equinix:fabric:RouteFilterRule
properties:
routeFilterId: <route_filter_policy_id>
prefix: 192.168.0.0/24
prefixMatch: exact
description: Route Filter Rule for X Purpose
outputs:
routeFilterRuleId: ${rfRule.id}
routeFilterId: ${rfRule.routeFilterId}
routeFilterRulePrefix: ${rfRule.prefix}
routeFilterRulePrefixMatch: ${rfRule.prefixMatch}
Create RouteFilterRule Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new RouteFilterRule(name: string, args: RouteFilterRuleArgs, opts?: CustomResourceOptions);
@overload
def RouteFilterRule(resource_name: str,
args: RouteFilterRuleArgs,
opts: Optional[ResourceOptions] = None)
@overload
def RouteFilterRule(resource_name: str,
opts: Optional[ResourceOptions] = None,
prefix: Optional[str] = None,
route_filter_id: Optional[str] = None,
description: Optional[str] = None,
name: Optional[str] = None,
prefix_match: Optional[str] = None)
func NewRouteFilterRule(ctx *Context, name string, args RouteFilterRuleArgs, opts ...ResourceOption) (*RouteFilterRule, error)
public RouteFilterRule(string name, RouteFilterRuleArgs args, CustomResourceOptions? opts = null)
public RouteFilterRule(String name, RouteFilterRuleArgs args)
public RouteFilterRule(String name, RouteFilterRuleArgs args, CustomResourceOptions options)
type: equinix:fabric:RouteFilterRule
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 RouteFilterRuleArgs
- 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 RouteFilterRuleArgs
- 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 RouteFilterRuleArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args RouteFilterRuleArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args RouteFilterRuleArgs
- 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 routeFilterRuleResource = new Equinix.Fabric.RouteFilterRule("routeFilterRuleResource", new()
{
Prefix = "string",
RouteFilterId = "string",
Description = "string",
Name = "string",
PrefixMatch = "string",
});
example, err := fabric.NewRouteFilterRule(ctx, "routeFilterRuleResource", &fabric.RouteFilterRuleArgs{
Prefix: pulumi.String("string"),
RouteFilterId: pulumi.String("string"),
Description: pulumi.String("string"),
Name: pulumi.String("string"),
PrefixMatch: pulumi.String("string"),
})
var routeFilterRuleResource = new RouteFilterRule("routeFilterRuleResource", RouteFilterRuleArgs.builder()
.prefix("string")
.routeFilterId("string")
.description("string")
.name("string")
.prefixMatch("string")
.build());
route_filter_rule_resource = equinix.fabric.RouteFilterRule("routeFilterRuleResource",
prefix="string",
route_filter_id="string",
description="string",
name="string",
prefix_match="string")
const routeFilterRuleResource = new equinix.fabric.RouteFilterRule("routeFilterRuleResource", {
prefix: "string",
routeFilterId: "string",
description: "string",
name: "string",
prefixMatch: "string",
});
type: equinix:fabric:RouteFilterRule
properties:
description: string
name: string
prefix: string
prefixMatch: string
routeFilterId: string
RouteFilterRule 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 RouteFilterRule resource accepts the following input properties:
- Prefix string
- IP Address Prefix to Filter on
- Route
Filter stringId - UUID of the Route Filter Policy to apply this Rule to
- Description string
- Optional description to add to the Route Filter you will be creating
- Name string
- Name of the Route Filter
- Prefix
Match string - Prefix matching operator. One of [ orlonger, exact ] Default: "orlonger"
- Prefix string
- IP Address Prefix to Filter on
- Route
Filter stringId - UUID of the Route Filter Policy to apply this Rule to
- Description string
- Optional description to add to the Route Filter you will be creating
- Name string
- Name of the Route Filter
- Prefix
Match string - Prefix matching operator. One of [ orlonger, exact ] Default: "orlonger"
- prefix String
- IP Address Prefix to Filter on
- route
Filter StringId - UUID of the Route Filter Policy to apply this Rule to
- description String
- Optional description to add to the Route Filter you will be creating
- name String
- Name of the Route Filter
- prefix
Match String - Prefix matching operator. One of [ orlonger, exact ] Default: "orlonger"
- prefix string
- IP Address Prefix to Filter on
- route
Filter stringId - UUID of the Route Filter Policy to apply this Rule to
- description string
- Optional description to add to the Route Filter you will be creating
- name string
- Name of the Route Filter
- prefix
Match string - Prefix matching operator. One of [ orlonger, exact ] Default: "orlonger"
- prefix str
- IP Address Prefix to Filter on
- route_
filter_ strid - UUID of the Route Filter Policy to apply this Rule to
- description str
- Optional description to add to the Route Filter you will be creating
- name str
- Name of the Route Filter
- prefix_
match str - Prefix matching operator. One of [ orlonger, exact ] Default: "orlonger"
- prefix String
- IP Address Prefix to Filter on
- route
Filter StringId - UUID of the Route Filter Policy to apply this Rule to
- description String
- Optional description to add to the Route Filter you will be creating
- name String
- Name of the Route Filter
- prefix
Match String - Prefix matching operator. One of [ orlonger, exact ] Default: "orlonger"
Outputs
All input properties are implicitly available as output properties. Additionally, the RouteFilterRule resource produces the following output properties:
- Action string
- Action that will be taken on IP Addresses matching the rule
- Change
Logs List<RouteFilter Rule Change Log> - Changes
List<Route
Filter Rule Change> - An object with the details of the previous change applied on the Route Filter
- Href string
- Route filter rules URI
- Id string
- The provider-assigned unique ID for this managed resource.
- State string
- State of the Route Filter Rule in its lifecycle
- Type string
- Route Filter Type. One of [ BGPIPv4PREFIXFILTERRULE, BGPIPv6PREFIXFILTERRULE ]
- Uuid string
- Equinix Assigned ID for Route Filter Rule
- Action string
- Action that will be taken on IP Addresses matching the rule
- Change
Logs []RouteFilter Rule Change Log - Changes
[]Route
Filter Rule Change - An object with the details of the previous change applied on the Route Filter
- Href string
- Route filter rules URI
- Id string
- The provider-assigned unique ID for this managed resource.
- State string
- State of the Route Filter Rule in its lifecycle
- Type string
- Route Filter Type. One of [ BGPIPv4PREFIXFILTERRULE, BGPIPv6PREFIXFILTERRULE ]
- Uuid string
- Equinix Assigned ID for Route Filter Rule
- action String
- Action that will be taken on IP Addresses matching the rule
- change
Logs List<RouteFilter Rule Change Log> - changes
List<Route
Filter Rule Change> - An object with the details of the previous change applied on the Route Filter
- href String
- Route filter rules URI
- id String
- The provider-assigned unique ID for this managed resource.
- state String
- State of the Route Filter Rule in its lifecycle
- type String
- Route Filter Type. One of [ BGPIPv4PREFIXFILTERRULE, BGPIPv6PREFIXFILTERRULE ]
- uuid String
- Equinix Assigned ID for Route Filter Rule
- action string
- Action that will be taken on IP Addresses matching the rule
- change
Logs RouteFilter Rule Change Log[] - changes
Route
Filter Rule Change[] - An object with the details of the previous change applied on the Route Filter
- href string
- Route filter rules URI
- id string
- The provider-assigned unique ID for this managed resource.
- state string
- State of the Route Filter Rule in its lifecycle
- type string
- Route Filter Type. One of [ BGPIPv4PREFIXFILTERRULE, BGPIPv6PREFIXFILTERRULE ]
- uuid string
- Equinix Assigned ID for Route Filter Rule
- action str
- Action that will be taken on IP Addresses matching the rule
- change_
logs Sequence[RouteFilter Rule Change Log] - changes
Sequence[Route
Filter Rule Change] - An object with the details of the previous change applied on the Route Filter
- href str
- Route filter rules URI
- id str
- The provider-assigned unique ID for this managed resource.
- state str
- State of the Route Filter Rule in its lifecycle
- type str
- Route Filter Type. One of [ BGPIPv4PREFIXFILTERRULE, BGPIPv6PREFIXFILTERRULE ]
- uuid str
- Equinix Assigned ID for Route Filter Rule
- action String
- Action that will be taken on IP Addresses matching the rule
- change
Logs List<Property Map> - changes List<Property Map>
- An object with the details of the previous change applied on the Route Filter
- href String
- Route filter rules URI
- id String
- The provider-assigned unique ID for this managed resource.
- state String
- State of the Route Filter Rule in its lifecycle
- type String
- Route Filter Type. One of [ BGPIPv4PREFIXFILTERRULE, BGPIPv6PREFIXFILTERRULE ]
- uuid String
- Equinix Assigned ID for Route Filter Rule
Look up Existing RouteFilterRule Resource
Get an existing RouteFilterRule 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?: RouteFilterRuleState, opts?: CustomResourceOptions): RouteFilterRule
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
action: Optional[str] = None,
change_logs: Optional[Sequence[RouteFilterRuleChangeLogArgs]] = None,
changes: Optional[Sequence[RouteFilterRuleChangeArgs]] = None,
description: Optional[str] = None,
href: Optional[str] = None,
name: Optional[str] = None,
prefix: Optional[str] = None,
prefix_match: Optional[str] = None,
route_filter_id: Optional[str] = None,
state: Optional[str] = None,
type: Optional[str] = None,
uuid: Optional[str] = None) -> RouteFilterRule
func GetRouteFilterRule(ctx *Context, name string, id IDInput, state *RouteFilterRuleState, opts ...ResourceOption) (*RouteFilterRule, error)
public static RouteFilterRule Get(string name, Input<string> id, RouteFilterRuleState? state, CustomResourceOptions? opts = null)
public static RouteFilterRule get(String name, Output<String> id, RouteFilterRuleState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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.
- Action string
- Action that will be taken on IP Addresses matching the rule
- Change
Logs List<RouteFilter Rule Change Log> - Changes
List<Route
Filter Rule Change> - An object with the details of the previous change applied on the Route Filter
- Description string
- Optional description to add to the Route Filter you will be creating
- Href string
- Route filter rules URI
- Name string
- Name of the Route Filter
- Prefix string
- IP Address Prefix to Filter on
- Prefix
Match string - Prefix matching operator. One of [ orlonger, exact ] Default: "orlonger"
- Route
Filter stringId - UUID of the Route Filter Policy to apply this Rule to
- State string
- State of the Route Filter Rule in its lifecycle
- Type string
- Route Filter Type. One of [ BGPIPv4PREFIXFILTERRULE, BGPIPv6PREFIXFILTERRULE ]
- Uuid string
- Equinix Assigned ID for Route Filter Rule
- Action string
- Action that will be taken on IP Addresses matching the rule
- Change
Logs []RouteFilter Rule Change Log Args - Changes
[]Route
Filter Rule Change Args - An object with the details of the previous change applied on the Route Filter
- Description string
- Optional description to add to the Route Filter you will be creating
- Href string
- Route filter rules URI
- Name string
- Name of the Route Filter
- Prefix string
- IP Address Prefix to Filter on
- Prefix
Match string - Prefix matching operator. One of [ orlonger, exact ] Default: "orlonger"
- Route
Filter stringId - UUID of the Route Filter Policy to apply this Rule to
- State string
- State of the Route Filter Rule in its lifecycle
- Type string
- Route Filter Type. One of [ BGPIPv4PREFIXFILTERRULE, BGPIPv6PREFIXFILTERRULE ]
- Uuid string
- Equinix Assigned ID for Route Filter Rule
- action String
- Action that will be taken on IP Addresses matching the rule
- change
Logs List<RouteFilter Rule Change Log> - changes
List<Route
Filter Rule Change> - An object with the details of the previous change applied on the Route Filter
- description String
- Optional description to add to the Route Filter you will be creating
- href String
- Route filter rules URI
- name String
- Name of the Route Filter
- prefix String
- IP Address Prefix to Filter on
- prefix
Match String - Prefix matching operator. One of [ orlonger, exact ] Default: "orlonger"
- route
Filter StringId - UUID of the Route Filter Policy to apply this Rule to
- state String
- State of the Route Filter Rule in its lifecycle
- type String
- Route Filter Type. One of [ BGPIPv4PREFIXFILTERRULE, BGPIPv6PREFIXFILTERRULE ]
- uuid String
- Equinix Assigned ID for Route Filter Rule
- action string
- Action that will be taken on IP Addresses matching the rule
- change
Logs RouteFilter Rule Change Log[] - changes
Route
Filter Rule Change[] - An object with the details of the previous change applied on the Route Filter
- description string
- Optional description to add to the Route Filter you will be creating
- href string
- Route filter rules URI
- name string
- Name of the Route Filter
- prefix string
- IP Address Prefix to Filter on
- prefix
Match string - Prefix matching operator. One of [ orlonger, exact ] Default: "orlonger"
- route
Filter stringId - UUID of the Route Filter Policy to apply this Rule to
- state string
- State of the Route Filter Rule in its lifecycle
- type string
- Route Filter Type. One of [ BGPIPv4PREFIXFILTERRULE, BGPIPv6PREFIXFILTERRULE ]
- uuid string
- Equinix Assigned ID for Route Filter Rule
- action str
- Action that will be taken on IP Addresses matching the rule
- change_
logs Sequence[RouteFilter Rule Change Log Args] - changes
Sequence[Route
Filter Rule Change Args] - An object with the details of the previous change applied on the Route Filter
- description str
- Optional description to add to the Route Filter you will be creating
- href str
- Route filter rules URI
- name str
- Name of the Route Filter
- prefix str
- IP Address Prefix to Filter on
- prefix_
match str - Prefix matching operator. One of [ orlonger, exact ] Default: "orlonger"
- route_
filter_ strid - UUID of the Route Filter Policy to apply this Rule to
- state str
- State of the Route Filter Rule in its lifecycle
- type str
- Route Filter Type. One of [ BGPIPv4PREFIXFILTERRULE, BGPIPv6PREFIXFILTERRULE ]
- uuid str
- Equinix Assigned ID for Route Filter Rule
- action String
- Action that will be taken on IP Addresses matching the rule
- change
Logs List<Property Map> - changes List<Property Map>
- An object with the details of the previous change applied on the Route Filter
- description String
- Optional description to add to the Route Filter you will be creating
- href String
- Route filter rules URI
- name String
- Name of the Route Filter
- prefix String
- IP Address Prefix to Filter on
- prefix
Match String - Prefix matching operator. One of [ orlonger, exact ] Default: "orlonger"
- route
Filter StringId - UUID of the Route Filter Policy to apply this Rule to
- state String
- State of the Route Filter Rule in its lifecycle
- type String
- Route Filter Type. One of [ BGPIPv4PREFIXFILTERRULE, BGPIPv6PREFIXFILTERRULE ]
- uuid String
- Equinix Assigned ID for Route Filter Rule
Supporting Types
RouteFilterRuleChange, RouteFilterRuleChangeArgs
- Href string
- The URI of the previous Route Filter Rule Change
- Type string
- Type of change. One of [ "BGP_IPv4_PREFIX_FILTER_RULE_UPDATE","BGP_IPv4_PREFIX_FILTER_RULE_CREATION","BGP_IPv4_PREFIX_FILTER_RULE_DELETION","BGP_IPv6_PREFIX_FILTER_RULE_UPDATE","BGP_IPv6_PREFIX_FILTER_RULE_CREATION","BGP_IPv6_PREFIX_FILTER_RULE_DELETION" ]
- Uuid string
- Unique identifier for the previous change
- Href string
- The URI of the previous Route Filter Rule Change
- Type string
- Type of change. One of [ "BGP_IPv4_PREFIX_FILTER_RULE_UPDATE","BGP_IPv4_PREFIX_FILTER_RULE_CREATION","BGP_IPv4_PREFIX_FILTER_RULE_DELETION","BGP_IPv6_PREFIX_FILTER_RULE_UPDATE","BGP_IPv6_PREFIX_FILTER_RULE_CREATION","BGP_IPv6_PREFIX_FILTER_RULE_DELETION" ]
- Uuid string
- Unique identifier for the previous change
- href String
- The URI of the previous Route Filter Rule Change
- type String
- Type of change. One of [ "BGP_IPv4_PREFIX_FILTER_RULE_UPDATE","BGP_IPv4_PREFIX_FILTER_RULE_CREATION","BGP_IPv4_PREFIX_FILTER_RULE_DELETION","BGP_IPv6_PREFIX_FILTER_RULE_UPDATE","BGP_IPv6_PREFIX_FILTER_RULE_CREATION","BGP_IPv6_PREFIX_FILTER_RULE_DELETION" ]
- uuid String
- Unique identifier for the previous change
- href string
- The URI of the previous Route Filter Rule Change
- type string
- Type of change. One of [ "BGP_IPv4_PREFIX_FILTER_RULE_UPDATE","BGP_IPv4_PREFIX_FILTER_RULE_CREATION","BGP_IPv4_PREFIX_FILTER_RULE_DELETION","BGP_IPv6_PREFIX_FILTER_RULE_UPDATE","BGP_IPv6_PREFIX_FILTER_RULE_CREATION","BGP_IPv6_PREFIX_FILTER_RULE_DELETION" ]
- uuid string
- Unique identifier for the previous change
- href str
- The URI of the previous Route Filter Rule Change
- type str
- Type of change. One of [ "BGP_IPv4_PREFIX_FILTER_RULE_UPDATE","BGP_IPv4_PREFIX_FILTER_RULE_CREATION","BGP_IPv4_PREFIX_FILTER_RULE_DELETION","BGP_IPv6_PREFIX_FILTER_RULE_UPDATE","BGP_IPv6_PREFIX_FILTER_RULE_CREATION","BGP_IPv6_PREFIX_FILTER_RULE_DELETION" ]
- uuid str
- Unique identifier for the previous change
- href String
- The URI of the previous Route Filter Rule Change
- type String
- Type of change. One of [ "BGP_IPv4_PREFIX_FILTER_RULE_UPDATE","BGP_IPv4_PREFIX_FILTER_RULE_CREATION","BGP_IPv4_PREFIX_FILTER_RULE_DELETION","BGP_IPv6_PREFIX_FILTER_RULE_UPDATE","BGP_IPv6_PREFIX_FILTER_RULE_CREATION","BGP_IPv6_PREFIX_FILTER_RULE_DELETION" ]
- uuid String
- Unique identifier for the previous change
RouteFilterRuleChangeLog, RouteFilterRuleChangeLogArgs
- Created
By string - Created by User Key
- Created
By stringEmail - Created by User Email Address
- Created
By stringFull Name - Created by User Full Name
- Created
Date stringTime - Created by Date and Time
- Deleted
By string - Deleted by User Key
- Deleted
By stringEmail - Deleted by User Email Address
- Deleted
By stringFull Name - Deleted by User Full Name
- Deleted
Date stringTime - Deleted by Date and Time
- Updated
By string - Updated by User Key
- Updated
By stringEmail - Updated by User Email Address
- Updated
By stringFull Name - Updated by User Full Name
- Updated
Date stringTime - Updated by Date and Time
- Created
By string - Created by User Key
- Created
By stringEmail - Created by User Email Address
- Created
By stringFull Name - Created by User Full Name
- Created
Date stringTime - Created by Date and Time
- Deleted
By string - Deleted by User Key
- Deleted
By stringEmail - Deleted by User Email Address
- Deleted
By stringFull Name - Deleted by User Full Name
- Deleted
Date stringTime - Deleted by Date and Time
- Updated
By string - Updated by User Key
- Updated
By stringEmail - Updated by User Email Address
- Updated
By stringFull Name - Updated by User Full Name
- Updated
Date stringTime - Updated by Date and Time
- created
By String - Created by User Key
- created
By StringEmail - Created by User Email Address
- created
By StringFull Name - Created by User Full Name
- created
Date StringTime - Created by Date and Time
- deleted
By String - Deleted by User Key
- deleted
By StringEmail - Deleted by User Email Address
- deleted
By StringFull Name - Deleted by User Full Name
- deleted
Date StringTime - Deleted by Date and Time
- updated
By String - Updated by User Key
- updated
By StringEmail - Updated by User Email Address
- updated
By StringFull Name - Updated by User Full Name
- updated
Date StringTime - Updated by Date and Time
- created
By string - Created by User Key
- created
By stringEmail - Created by User Email Address
- created
By stringFull Name - Created by User Full Name
- created
Date stringTime - Created by Date and Time
- deleted
By string - Deleted by User Key
- deleted
By stringEmail - Deleted by User Email Address
- deleted
By stringFull Name - Deleted by User Full Name
- deleted
Date stringTime - Deleted by Date and Time
- updated
By string - Updated by User Key
- updated
By stringEmail - Updated by User Email Address
- updated
By stringFull Name - Updated by User Full Name
- updated
Date stringTime - Updated by Date and Time
- created_
by str - Created by User Key
- created_
by_ stremail - Created by User Email Address
- created_
by_ strfull_ name - Created by User Full Name
- created_
date_ strtime - Created by Date and Time
- deleted_
by str - Deleted by User Key
- deleted_
by_ stremail - Deleted by User Email Address
- deleted_
by_ strfull_ name - Deleted by User Full Name
- deleted_
date_ strtime - Deleted by Date and Time
- updated_
by str - Updated by User Key
- updated_
by_ stremail - Updated by User Email Address
- updated_
by_ strfull_ name - Updated by User Full Name
- updated_
date_ strtime - Updated by Date and Time
- created
By String - Created by User Key
- created
By StringEmail - Created by User Email Address
- created
By StringFull Name - Created by User Full Name
- created
Date StringTime - Created by Date and Time
- deleted
By String - Deleted by User Key
- deleted
By StringEmail - Deleted by User Email Address
- deleted
By StringFull Name - Deleted by User Full Name
- deleted
Date StringTime - Deleted by Date and Time
- updated
By String - Updated by User Key
- updated
By StringEmail - Updated by User Email Address
- updated
By StringFull Name - Updated by User Full Name
- updated
Date StringTime - Updated by Date and Time
Package Details
- Repository
- equinix equinix/pulumi-equinix
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
equinix
Terraform Provider.