outscale.ClientGateway
Explore with Pulumi AI
Manages a client gateway.
For more information on this resource, see the User Guide.
For more information on this resource actions, see the API documentation.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as outscale from "@pulumi/outscale";
const clientGateway01 = new outscale.ClientGateway("clientGateway01", {
bgpAsn: 65000,
connectionType: "ipsec.1",
publicIp: "111.11.11.111",
tags: [{
key: "Name",
value: "client_gateway_01",
}],
});
import pulumi
import pulumi_outscale as outscale
client_gateway01 = outscale.ClientGateway("clientGateway01",
bgp_asn=65000,
connection_type="ipsec.1",
public_ip="111.11.11.111",
tags=[{
"key": "Name",
"value": "client_gateway_01",
}])
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/outscale/outscale"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := outscale.NewClientGateway(ctx, "clientGateway01", &outscale.ClientGatewayArgs{
BgpAsn: pulumi.Float64(65000),
ConnectionType: pulumi.String("ipsec.1"),
PublicIp: pulumi.String("111.11.11.111"),
Tags: outscale.ClientGatewayTagArray{
&outscale.ClientGatewayTagArgs{
Key: pulumi.String("Name"),
Value: pulumi.String("client_gateway_01"),
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Outscale = Pulumi.Outscale;
return await Deployment.RunAsync(() =>
{
var clientGateway01 = new Outscale.ClientGateway("clientGateway01", new()
{
BgpAsn = 65000,
ConnectionType = "ipsec.1",
PublicIp = "111.11.11.111",
Tags = new[]
{
new Outscale.Inputs.ClientGatewayTagArgs
{
Key = "Name",
Value = "client_gateway_01",
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.outscale.ClientGateway;
import com.pulumi.outscale.ClientGatewayArgs;
import com.pulumi.outscale.inputs.ClientGatewayTagArgs;
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 clientGateway01 = new ClientGateway("clientGateway01", ClientGatewayArgs.builder()
.bgpAsn(65000)
.connectionType("ipsec.1")
.publicIp("111.11.11.111")
.tags(ClientGatewayTagArgs.builder()
.key("Name")
.value("client_gateway_01")
.build())
.build());
}
}
resources:
clientGateway01:
type: outscale:ClientGateway
properties:
bgpAsn: 65000
connectionType: ipsec.1
publicIp: 111.11.11.111
tags:
- key: Name
value: client_gateway_01
Create ClientGateway Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ClientGateway(name: string, args: ClientGatewayArgs, opts?: CustomResourceOptions);
@overload
def ClientGateway(resource_name: str,
args: ClientGatewayArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ClientGateway(resource_name: str,
opts: Optional[ResourceOptions] = None,
bgp_asn: Optional[float] = None,
connection_type: Optional[str] = None,
public_ip: Optional[str] = None,
outscale_client_gateway_id: Optional[str] = None,
tags: Optional[Sequence[ClientGatewayTagArgs]] = None)
func NewClientGateway(ctx *Context, name string, args ClientGatewayArgs, opts ...ResourceOption) (*ClientGateway, error)
public ClientGateway(string name, ClientGatewayArgs args, CustomResourceOptions? opts = null)
public ClientGateway(String name, ClientGatewayArgs args)
public ClientGateway(String name, ClientGatewayArgs args, CustomResourceOptions options)
type: outscale:ClientGateway
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 ClientGatewayArgs
- 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 ClientGatewayArgs
- 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 ClientGatewayArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ClientGatewayArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ClientGatewayArgs
- 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 clientGatewayResource = new Outscale.ClientGateway("clientGatewayResource", new()
{
BgpAsn = 0,
ConnectionType = "string",
PublicIp = "string",
OutscaleClientGatewayId = "string",
Tags = new[]
{
new Outscale.Inputs.ClientGatewayTagArgs
{
Key = "string",
Value = "string",
},
},
});
example, err := outscale.NewClientGateway(ctx, "clientGatewayResource", &outscale.ClientGatewayArgs{
BgpAsn: pulumi.Float64(0),
ConnectionType: pulumi.String("string"),
PublicIp: pulumi.String("string"),
OutscaleClientGatewayId: pulumi.String("string"),
Tags: .ClientGatewayTagArray{
&.ClientGatewayTagArgs{
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
})
var clientGatewayResource = new ClientGateway("clientGatewayResource", ClientGatewayArgs.builder()
.bgpAsn(0)
.connectionType("string")
.publicIp("string")
.outscaleClientGatewayId("string")
.tags(ClientGatewayTagArgs.builder()
.key("string")
.value("string")
.build())
.build());
client_gateway_resource = outscale.ClientGateway("clientGatewayResource",
bgp_asn=0,
connection_type="string",
public_ip="string",
outscale_client_gateway_id="string",
tags=[{
"key": "string",
"value": "string",
}])
const clientGatewayResource = new outscale.ClientGateway("clientGatewayResource", {
bgpAsn: 0,
connectionType: "string",
publicIp: "string",
outscaleClientGatewayId: "string",
tags: [{
key: "string",
value: "string",
}],
});
type: outscale:ClientGateway
properties:
bgpAsn: 0
connectionType: string
outscaleClientGatewayId: string
publicIp: string
tags:
- key: string
value: string
ClientGateway 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 ClientGateway resource accepts the following input properties:
- Bgp
Asn double - The Autonomous System Number (ASN) used by the Border Gateway Protocol (BGP) to find the path to your client gateway through the Internet. This number must be between
1
and4294967295
. If you do not have an ASN, you can choose one between 64512 and 65534, or between 4200000000 and 4294967294. - Connection
Type string - The communication protocol used to establish tunnel with your client gateway (always
ipsec.1
). - Public
Ip string - The public fixed IPv4 address of your client gateway.
- Outscale
Client stringGateway Id - List<Client
Gateway Tag> - A tag to add to this resource. You can specify this argument several times.
- Bgp
Asn float64 - The Autonomous System Number (ASN) used by the Border Gateway Protocol (BGP) to find the path to your client gateway through the Internet. This number must be between
1
and4294967295
. If you do not have an ASN, you can choose one between 64512 and 65534, or between 4200000000 and 4294967294. - Connection
Type string - The communication protocol used to establish tunnel with your client gateway (always
ipsec.1
). - Public
Ip string - The public fixed IPv4 address of your client gateway.
- Outscale
Client stringGateway Id - []Client
Gateway Tag Args - A tag to add to this resource. You can specify this argument several times.
- bgp
Asn Double - The Autonomous System Number (ASN) used by the Border Gateway Protocol (BGP) to find the path to your client gateway through the Internet. This number must be between
1
and4294967295
. If you do not have an ASN, you can choose one between 64512 and 65534, or between 4200000000 and 4294967294. - connection
Type String - The communication protocol used to establish tunnel with your client gateway (always
ipsec.1
). - public
Ip String - The public fixed IPv4 address of your client gateway.
- outscale
Client StringGateway Id - List<Client
Gateway Tag> - A tag to add to this resource. You can specify this argument several times.
- bgp
Asn number - The Autonomous System Number (ASN) used by the Border Gateway Protocol (BGP) to find the path to your client gateway through the Internet. This number must be between
1
and4294967295
. If you do not have an ASN, you can choose one between 64512 and 65534, or between 4200000000 and 4294967294. - connection
Type string - The communication protocol used to establish tunnel with your client gateway (always
ipsec.1
). - public
Ip string - The public fixed IPv4 address of your client gateway.
- outscale
Client stringGateway Id - Client
Gateway Tag[] - A tag to add to this resource. You can specify this argument several times.
- bgp_
asn float - The Autonomous System Number (ASN) used by the Border Gateway Protocol (BGP) to find the path to your client gateway through the Internet. This number must be between
1
and4294967295
. If you do not have an ASN, you can choose one between 64512 and 65534, or between 4200000000 and 4294967294. - connection_
type str - The communication protocol used to establish tunnel with your client gateway (always
ipsec.1
). - public_
ip str - The public fixed IPv4 address of your client gateway.
- outscale_
client_ strgateway_ id - Sequence[Client
Gateway Tag Args] - A tag to add to this resource. You can specify this argument several times.
- bgp
Asn Number - The Autonomous System Number (ASN) used by the Border Gateway Protocol (BGP) to find the path to your client gateway through the Internet. This number must be between
1
and4294967295
. If you do not have an ASN, you can choose one between 64512 and 65534, or between 4200000000 and 4294967294. - connection
Type String - The communication protocol used to establish tunnel with your client gateway (always
ipsec.1
). - public
Ip String - The public fixed IPv4 address of your client gateway.
- outscale
Client StringGateway Id - List<Property Map>
- A tag to add to this resource. You can specify this argument several times.
Outputs
All input properties are implicitly available as output properties. Additionally, the ClientGateway resource produces the following output properties:
- Client
Gateway stringId - The ID of the client gateway.
- Id string
- The provider-assigned unique ID for this managed resource.
- Request
Id string - State string
- The state of the client gateway (
pending
|available
|deleting
|deleted
).
- Client
Gateway stringId - The ID of the client gateway.
- Id string
- The provider-assigned unique ID for this managed resource.
- Request
Id string - State string
- The state of the client gateway (
pending
|available
|deleting
|deleted
).
- client
Gateway StringId - The ID of the client gateway.
- id String
- The provider-assigned unique ID for this managed resource.
- request
Id String - state String
- The state of the client gateway (
pending
|available
|deleting
|deleted
).
- client
Gateway stringId - The ID of the client gateway.
- id string
- The provider-assigned unique ID for this managed resource.
- request
Id string - state string
- The state of the client gateway (
pending
|available
|deleting
|deleted
).
- client_
gateway_ strid - The ID of the client gateway.
- id str
- The provider-assigned unique ID for this managed resource.
- request_
id str - state str
- The state of the client gateway (
pending
|available
|deleting
|deleted
).
- client
Gateway StringId - The ID of the client gateway.
- id String
- The provider-assigned unique ID for this managed resource.
- request
Id String - state String
- The state of the client gateway (
pending
|available
|deleting
|deleted
).
Look up Existing ClientGateway Resource
Get an existing ClientGateway 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?: ClientGatewayState, opts?: CustomResourceOptions): ClientGateway
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
bgp_asn: Optional[float] = None,
client_gateway_id: Optional[str] = None,
connection_type: Optional[str] = None,
outscale_client_gateway_id: Optional[str] = None,
public_ip: Optional[str] = None,
request_id: Optional[str] = None,
state: Optional[str] = None,
tags: Optional[Sequence[ClientGatewayTagArgs]] = None) -> ClientGateway
func GetClientGateway(ctx *Context, name string, id IDInput, state *ClientGatewayState, opts ...ResourceOption) (*ClientGateway, error)
public static ClientGateway Get(string name, Input<string> id, ClientGatewayState? state, CustomResourceOptions? opts = null)
public static ClientGateway get(String name, Output<String> id, ClientGatewayState state, CustomResourceOptions options)
resources: _: type: outscale:ClientGateway 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.
- Bgp
Asn double - The Autonomous System Number (ASN) used by the Border Gateway Protocol (BGP) to find the path to your client gateway through the Internet. This number must be between
1
and4294967295
. If you do not have an ASN, you can choose one between 64512 and 65534, or between 4200000000 and 4294967294. - Client
Gateway stringId - The ID of the client gateway.
- Connection
Type string - The communication protocol used to establish tunnel with your client gateway (always
ipsec.1
). - Outscale
Client stringGateway Id - Public
Ip string - The public fixed IPv4 address of your client gateway.
- Request
Id string - State string
- The state of the client gateway (
pending
|available
|deleting
|deleted
). - List<Client
Gateway Tag> - A tag to add to this resource. You can specify this argument several times.
- Bgp
Asn float64 - The Autonomous System Number (ASN) used by the Border Gateway Protocol (BGP) to find the path to your client gateway through the Internet. This number must be between
1
and4294967295
. If you do not have an ASN, you can choose one between 64512 and 65534, or between 4200000000 and 4294967294. - Client
Gateway stringId - The ID of the client gateway.
- Connection
Type string - The communication protocol used to establish tunnel with your client gateway (always
ipsec.1
). - Outscale
Client stringGateway Id - Public
Ip string - The public fixed IPv4 address of your client gateway.
- Request
Id string - State string
- The state of the client gateway (
pending
|available
|deleting
|deleted
). - []Client
Gateway Tag Args - A tag to add to this resource. You can specify this argument several times.
- bgp
Asn Double - The Autonomous System Number (ASN) used by the Border Gateway Protocol (BGP) to find the path to your client gateway through the Internet. This number must be between
1
and4294967295
. If you do not have an ASN, you can choose one between 64512 and 65534, or between 4200000000 and 4294967294. - client
Gateway StringId - The ID of the client gateway.
- connection
Type String - The communication protocol used to establish tunnel with your client gateway (always
ipsec.1
). - outscale
Client StringGateway Id - public
Ip String - The public fixed IPv4 address of your client gateway.
- request
Id String - state String
- The state of the client gateway (
pending
|available
|deleting
|deleted
). - List<Client
Gateway Tag> - A tag to add to this resource. You can specify this argument several times.
- bgp
Asn number - The Autonomous System Number (ASN) used by the Border Gateway Protocol (BGP) to find the path to your client gateway through the Internet. This number must be between
1
and4294967295
. If you do not have an ASN, you can choose one between 64512 and 65534, or between 4200000000 and 4294967294. - client
Gateway stringId - The ID of the client gateway.
- connection
Type string - The communication protocol used to establish tunnel with your client gateway (always
ipsec.1
). - outscale
Client stringGateway Id - public
Ip string - The public fixed IPv4 address of your client gateway.
- request
Id string - state string
- The state of the client gateway (
pending
|available
|deleting
|deleted
). - Client
Gateway Tag[] - A tag to add to this resource. You can specify this argument several times.
- bgp_
asn float - The Autonomous System Number (ASN) used by the Border Gateway Protocol (BGP) to find the path to your client gateway through the Internet. This number must be between
1
and4294967295
. If you do not have an ASN, you can choose one between 64512 and 65534, or between 4200000000 and 4294967294. - client_
gateway_ strid - The ID of the client gateway.
- connection_
type str - The communication protocol used to establish tunnel with your client gateway (always
ipsec.1
). - outscale_
client_ strgateway_ id - public_
ip str - The public fixed IPv4 address of your client gateway.
- request_
id str - state str
- The state of the client gateway (
pending
|available
|deleting
|deleted
). - Sequence[Client
Gateway Tag Args] - A tag to add to this resource. You can specify this argument several times.
- bgp
Asn Number - The Autonomous System Number (ASN) used by the Border Gateway Protocol (BGP) to find the path to your client gateway through the Internet. This number must be between
1
and4294967295
. If you do not have an ASN, you can choose one between 64512 and 65534, or between 4200000000 and 4294967294. - client
Gateway StringId - The ID of the client gateway.
- connection
Type String - The communication protocol used to establish tunnel with your client gateway (always
ipsec.1
). - outscale
Client StringGateway Id - public
Ip String - The public fixed IPv4 address of your client gateway.
- request
Id String - state String
- The state of the client gateway (
pending
|available
|deleting
|deleted
). - List<Property Map>
- A tag to add to this resource. You can specify this argument several times.
Supporting Types
ClientGatewayTag, ClientGatewayTagArgs
Import
A client gateway can be imported using its ID. For example:
console
$ pulumi import outscale:index/clientGateway:ClientGateway ImportedClientGateway cgw-12345678
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- outscale outscale/terraform-provider-outscale
- License
- Notes
- This Pulumi package is based on the
outscale
Terraform Provider.