outscale.OutboundRule
Explore with Pulumi AI
Create OutboundRule Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new OutboundRule(name: string, args: OutboundRuleArgs, opts?: CustomResourceOptions);
@overload
def OutboundRule(resource_name: str,
args: OutboundRuleArgs,
opts: Optional[ResourceOptions] = None)
@overload
def OutboundRule(resource_name: str,
opts: Optional[ResourceOptions] = None,
flow: Optional[str] = None,
security_group_id: Optional[str] = None,
from_port_range: Optional[float] = None,
ip_protocol: Optional[str] = None,
ip_range: Optional[str] = None,
outbound_rule_id: Optional[str] = None,
rules: Optional[Sequence[OutboundRuleRuleArgs]] = None,
security_group_account_id_to_link: Optional[str] = None,
security_group_name_to_link: Optional[str] = None,
to_port_range: Optional[float] = None)
func NewOutboundRule(ctx *Context, name string, args OutboundRuleArgs, opts ...ResourceOption) (*OutboundRule, error)
public OutboundRule(string name, OutboundRuleArgs args, CustomResourceOptions? opts = null)
public OutboundRule(String name, OutboundRuleArgs args)
public OutboundRule(String name, OutboundRuleArgs args, CustomResourceOptions options)
type: outscale:OutboundRule
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 OutboundRuleArgs
- 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 OutboundRuleArgs
- 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 OutboundRuleArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args OutboundRuleArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args OutboundRuleArgs
- 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 outboundRuleResource = new Outscale.OutboundRule("outboundRuleResource", new()
{
Flow = "string",
SecurityGroupId = "string",
FromPortRange = 0,
IpProtocol = "string",
IpRange = "string",
OutboundRuleId = "string",
Rules = new[]
{
new Outscale.Inputs.OutboundRuleRuleArgs
{
FromPortRange = 0,
IpProtocol = "string",
IpRanges = new[]
{
"string",
},
SecurityGroupsMembers = new[]
{
new Outscale.Inputs.OutboundRuleRuleSecurityGroupsMemberArgs
{
AccountId = "string",
SecurityGroupId = "string",
SecurityGroupName = "string",
},
},
ServiceIds = new[]
{
"string",
},
ToPortRange = 0,
},
},
SecurityGroupAccountIdToLink = "string",
SecurityGroupNameToLink = "string",
ToPortRange = 0,
});
example, err := outscale.NewOutboundRule(ctx, "outboundRuleResource", &outscale.OutboundRuleArgs{
Flow: pulumi.String("string"),
SecurityGroupId: pulumi.String("string"),
FromPortRange: pulumi.Float64(0),
IpProtocol: pulumi.String("string"),
IpRange: pulumi.String("string"),
OutboundRuleId: pulumi.String("string"),
Rules: .OutboundRuleRuleArray{
&.OutboundRuleRuleArgs{
FromPortRange: pulumi.Float64(0),
IpProtocol: pulumi.String("string"),
IpRanges: pulumi.StringArray{
pulumi.String("string"),
},
SecurityGroupsMembers: .OutboundRuleRuleSecurityGroupsMemberArray{
&.OutboundRuleRuleSecurityGroupsMemberArgs{
AccountId: pulumi.String("string"),
SecurityGroupId: pulumi.String("string"),
SecurityGroupName: pulumi.String("string"),
},
},
ServiceIds: pulumi.StringArray{
pulumi.String("string"),
},
ToPortRange: pulumi.Float64(0),
},
},
SecurityGroupAccountIdToLink: pulumi.String("string"),
SecurityGroupNameToLink: pulumi.String("string"),
ToPortRange: pulumi.Float64(0),
})
var outboundRuleResource = new OutboundRule("outboundRuleResource", OutboundRuleArgs.builder()
.flow("string")
.securityGroupId("string")
.fromPortRange(0)
.ipProtocol("string")
.ipRange("string")
.outboundRuleId("string")
.rules(OutboundRuleRuleArgs.builder()
.fromPortRange(0)
.ipProtocol("string")
.ipRanges("string")
.securityGroupsMembers(OutboundRuleRuleSecurityGroupsMemberArgs.builder()
.accountId("string")
.securityGroupId("string")
.securityGroupName("string")
.build())
.serviceIds("string")
.toPortRange(0)
.build())
.securityGroupAccountIdToLink("string")
.securityGroupNameToLink("string")
.toPortRange(0)
.build());
outbound_rule_resource = outscale.OutboundRule("outboundRuleResource",
flow="string",
security_group_id="string",
from_port_range=0,
ip_protocol="string",
ip_range="string",
outbound_rule_id="string",
rules=[{
"from_port_range": 0,
"ip_protocol": "string",
"ip_ranges": ["string"],
"security_groups_members": [{
"account_id": "string",
"security_group_id": "string",
"security_group_name": "string",
}],
"service_ids": ["string"],
"to_port_range": 0,
}],
security_group_account_id_to_link="string",
security_group_name_to_link="string",
to_port_range=0)
const outboundRuleResource = new outscale.OutboundRule("outboundRuleResource", {
flow: "string",
securityGroupId: "string",
fromPortRange: 0,
ipProtocol: "string",
ipRange: "string",
outboundRuleId: "string",
rules: [{
fromPortRange: 0,
ipProtocol: "string",
ipRanges: ["string"],
securityGroupsMembers: [{
accountId: "string",
securityGroupId: "string",
securityGroupName: "string",
}],
serviceIds: ["string"],
toPortRange: 0,
}],
securityGroupAccountIdToLink: "string",
securityGroupNameToLink: "string",
toPortRange: 0,
});
type: outscale:OutboundRule
properties:
flow: string
fromPortRange: 0
ipProtocol: string
ipRange: string
outboundRuleId: string
rules:
- fromPortRange: 0
ipProtocol: string
ipRanges:
- string
securityGroupsMembers:
- accountId: string
securityGroupId: string
securityGroupName: string
serviceIds:
- string
toPortRange: 0
securityGroupAccountIdToLink: string
securityGroupId: string
securityGroupNameToLink: string
toPortRange: 0
OutboundRule 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 OutboundRule resource accepts the following input properties:
- Flow string
- Security
Group stringId - From
Port doubleRange - Ip
Protocol string - Ip
Range string - Outbound
Rule stringId - Rules
List<Outbound
Rule Rule> - Security
Group stringAccount Id To Link - Security
Group stringName To Link - To
Port doubleRange
- Flow string
- Security
Group stringId - From
Port float64Range - Ip
Protocol string - Ip
Range string - Outbound
Rule stringId - Rules
[]Outbound
Rule Rule Args - Security
Group stringAccount Id To Link - Security
Group stringName To Link - To
Port float64Range
- flow String
- security
Group StringId - from
Port DoubleRange - ip
Protocol String - ip
Range String - outbound
Rule StringId - rules
List<Outbound
Rule Rule> - security
Group StringAccount Id To Link - security
Group StringName To Link - to
Port DoubleRange
- flow string
- security
Group stringId - from
Port numberRange - ip
Protocol string - ip
Range string - outbound
Rule stringId - rules
Outbound
Rule Rule[] - security
Group stringAccount Id To Link - security
Group stringName To Link - to
Port numberRange
- flow String
- security
Group StringId - from
Port NumberRange - ip
Protocol String - ip
Range String - outbound
Rule StringId - rules List<Property Map>
- security
Group StringAccount Id To Link - security
Group StringName To Link - to
Port NumberRange
Outputs
All input properties are implicitly available as output properties. Additionally, the OutboundRule resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Net
Id string - Request
Id string - Security
Group stringName
- Id string
- The provider-assigned unique ID for this managed resource.
- Net
Id string - Request
Id string - Security
Group stringName
- id String
- The provider-assigned unique ID for this managed resource.
- net
Id String - request
Id String - security
Group StringName
- id string
- The provider-assigned unique ID for this managed resource.
- net
Id string - request
Id string - security
Group stringName
- id str
- The provider-assigned unique ID for this managed resource.
- net_
id str - request_
id str - security_
group_ strname
- id String
- The provider-assigned unique ID for this managed resource.
- net
Id String - request
Id String - security
Group StringName
Look up Existing OutboundRule Resource
Get an existing OutboundRule 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?: OutboundRuleState, opts?: CustomResourceOptions): OutboundRule
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
flow: Optional[str] = None,
from_port_range: Optional[float] = None,
ip_protocol: Optional[str] = None,
ip_range: Optional[str] = None,
net_id: Optional[str] = None,
outbound_rule_id: Optional[str] = None,
request_id: Optional[str] = None,
rules: Optional[Sequence[OutboundRuleRuleArgs]] = None,
security_group_account_id_to_link: Optional[str] = None,
security_group_id: Optional[str] = None,
security_group_name: Optional[str] = None,
security_group_name_to_link: Optional[str] = None,
to_port_range: Optional[float] = None) -> OutboundRule
func GetOutboundRule(ctx *Context, name string, id IDInput, state *OutboundRuleState, opts ...ResourceOption) (*OutboundRule, error)
public static OutboundRule Get(string name, Input<string> id, OutboundRuleState? state, CustomResourceOptions? opts = null)
public static OutboundRule get(String name, Output<String> id, OutboundRuleState state, CustomResourceOptions options)
resources: _: type: outscale:OutboundRule 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.
- Flow string
- From
Port doubleRange - Ip
Protocol string - Ip
Range string - Net
Id string - Outbound
Rule stringId - Request
Id string - Rules
List<Outbound
Rule Rule> - Security
Group stringAccount Id To Link - Security
Group stringId - Security
Group stringName - Security
Group stringName To Link - To
Port doubleRange
- Flow string
- From
Port float64Range - Ip
Protocol string - Ip
Range string - Net
Id string - Outbound
Rule stringId - Request
Id string - Rules
[]Outbound
Rule Rule Args - Security
Group stringAccount Id To Link - Security
Group stringId - Security
Group stringName - Security
Group stringName To Link - To
Port float64Range
- flow String
- from
Port DoubleRange - ip
Protocol String - ip
Range String - net
Id String - outbound
Rule StringId - request
Id String - rules
List<Outbound
Rule Rule> - security
Group StringAccount Id To Link - security
Group StringId - security
Group StringName - security
Group StringName To Link - to
Port DoubleRange
- flow string
- from
Port numberRange - ip
Protocol string - ip
Range string - net
Id string - outbound
Rule stringId - request
Id string - rules
Outbound
Rule Rule[] - security
Group stringAccount Id To Link - security
Group stringId - security
Group stringName - security
Group stringName To Link - to
Port numberRange
- flow String
- from
Port NumberRange - ip
Protocol String - ip
Range String - net
Id String - outbound
Rule StringId - request
Id String - rules List<Property Map>
- security
Group StringAccount Id To Link - security
Group StringId - security
Group StringName - security
Group StringName To Link - to
Port NumberRange
Supporting Types
OutboundRuleRule, OutboundRuleRuleArgs
- From
Port doubleRange - Ip
Protocol string - Ip
Ranges List<string> - Security
Groups List<OutboundMembers Rule Rule Security Groups Member> - Service
Ids List<string> - To
Port doubleRange
- From
Port float64Range - Ip
Protocol string - Ip
Ranges []string - Security
Groups []OutboundMembers Rule Rule Security Groups Member - Service
Ids []string - To
Port float64Range
- from
Port DoubleRange - ip
Protocol String - ip
Ranges List<String> - security
Groups List<OutboundMembers Rule Rule Security Groups Member> - service
Ids List<String> - to
Port DoubleRange
- from
Port numberRange - ip
Protocol string - ip
Ranges string[] - security
Groups OutboundMembers Rule Rule Security Groups Member[] - service
Ids string[] - to
Port numberRange
- from_
port_ floatrange - ip_
protocol str - ip_
ranges Sequence[str] - security_
groups_ Sequence[Outboundmembers Rule Rule Security Groups Member] - service_
ids Sequence[str] - to_
port_ floatrange
- from
Port NumberRange - ip
Protocol String - ip
Ranges List<String> - security
Groups List<Property Map>Members - service
Ids List<String> - to
Port NumberRange
OutboundRuleRuleSecurityGroupsMember, OutboundRuleRuleSecurityGroupsMemberArgs
- Account
Id string - Security
Group stringId - Security
Group stringName
- Account
Id string - Security
Group stringId - Security
Group stringName
- account
Id String - security
Group StringId - security
Group StringName
- account
Id string - security
Group stringId - security
Group stringName
- account_
id str - security_
group_ strid - security_
group_ strname
- account
Id String - security
Group StringId - security
Group StringName
Package Details
- Repository
- outscale outscale/terraform-provider-outscale
- License
- Notes
- This Pulumi package is based on the
outscale
Terraform Provider.