com.pulumi.alicloud.vpc.kotlin.NatIpCidr.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-alicloud-kotlin Show documentation
Show all versions of pulumi-alicloud-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.alicloud.vpc.kotlin
import com.pulumi.core.Output
import com.pulumi.kotlin.KotlinCustomResource
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.ResourceMapper
import com.pulumi.kotlin.options.CustomResourceOptions
import com.pulumi.kotlin.options.CustomResourceOptionsBuilder
import com.pulumi.resources.Resource
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
/**
* Builder for [NatIpCidr].
*/
@PulumiTagMarker
public class NatIpCidrResourceBuilder internal constructor() {
public var name: String? = null
public var args: NatIpCidrArgs = NatIpCidrArgs()
public var opts: CustomResourceOptions = CustomResourceOptions()
/**
* @param name The _unique_ name of the resulting resource.
*/
public fun name(`value`: String) {
this.name = value
}
/**
* @param block The arguments to use to populate this resource's properties.
*/
public suspend fun args(block: suspend NatIpCidrArgsBuilder.() -> Unit) {
val builder = NatIpCidrArgsBuilder()
block(builder)
this.args = builder.build()
}
/**
* @param block A bag of options that control this resource's behavior.
*/
public suspend fun opts(block: suspend CustomResourceOptionsBuilder.() -> Unit) {
this.opts = com.pulumi.kotlin.options.CustomResourceOptions.opts(block)
}
internal fun build(): NatIpCidr {
val builtJavaResource = com.pulumi.alicloud.vpc.NatIpCidr(
this.name,
this.args.toJava(),
this.opts.toJava(),
)
return NatIpCidr(builtJavaResource)
}
}
/**
* Provides a VPC Nat Ip Cidr resource.
* For information about VPC Nat Ip Cidr and how to use it, see [What is Nat Ip Cidr](https://www.alibabacloud.com/help/doc-detail/281972.htm).
* > **NOTE:** Available in v1.136.0+.
* ## Example Usage
* Basic Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as alicloud from "@pulumi/alicloud";
* const example = alicloud.getZones({
* availableResourceCreation: "VSwitch",
* });
* const exampleNetwork = new alicloud.vpc.Network("example", {
* vpcName: "terraform-example",
* cidrBlock: "172.16.0.0/12",
* });
* const exampleSwitch = new alicloud.vpc.Switch("example", {
* vpcId: exampleNetwork.id,
* cidrBlock: "172.16.0.0/21",
* zoneId: example.then(example => example.zones?.[0]?.id),
* vswitchName: "terraform-example",
* });
* const exampleNatGateway = new alicloud.vpc.NatGateway("example", {
* vpcId: exampleNetwork.id,
* internetChargeType: "PayByLcu",
* natGatewayName: "terraform-example",
* description: "terraform-example",
* natType: "Enhanced",
* vswitchId: exampleSwitch.id,
* networkType: "intranet",
* });
* const exampleNatIpCidr = new alicloud.vpc.NatIpCidr("example", {
* natGatewayId: exampleNatGateway.id,
* natIpCidrName: "terraform-example",
* natIpCidr: "192.168.0.0/16",
* });
* ```
* ```python
* import pulumi
* import pulumi_alicloud as alicloud
* example = alicloud.get_zones(available_resource_creation="VSwitch")
* example_network = alicloud.vpc.Network("example",
* vpc_name="terraform-example",
* cidr_block="172.16.0.0/12")
* example_switch = alicloud.vpc.Switch("example",
* vpc_id=example_network.id,
* cidr_block="172.16.0.0/21",
* zone_id=example.zones[0].id,
* vswitch_name="terraform-example")
* example_nat_gateway = alicloud.vpc.NatGateway("example",
* vpc_id=example_network.id,
* internet_charge_type="PayByLcu",
* nat_gateway_name="terraform-example",
* description="terraform-example",
* nat_type="Enhanced",
* vswitch_id=example_switch.id,
* network_type="intranet")
* example_nat_ip_cidr = alicloud.vpc.NatIpCidr("example",
* nat_gateway_id=example_nat_gateway.id,
* nat_ip_cidr_name="terraform-example",
* nat_ip_cidr="192.168.0.0/16")
* ```
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using AliCloud = Pulumi.AliCloud;
* return await Deployment.RunAsync(() =>
* {
* var example = AliCloud.GetZones.Invoke(new()
* {
* AvailableResourceCreation = "VSwitch",
* });
* var exampleNetwork = new AliCloud.Vpc.Network("example", new()
* {
* VpcName = "terraform-example",
* CidrBlock = "172.16.0.0/12",
* });
* var exampleSwitch = new AliCloud.Vpc.Switch("example", new()
* {
* VpcId = exampleNetwork.Id,
* CidrBlock = "172.16.0.0/21",
* ZoneId = example.Apply(getZonesResult => getZonesResult.Zones[0]?.Id),
* VswitchName = "terraform-example",
* });
* var exampleNatGateway = new AliCloud.Vpc.NatGateway("example", new()
* {
* VpcId = exampleNetwork.Id,
* InternetChargeType = "PayByLcu",
* NatGatewayName = "terraform-example",
* Description = "terraform-example",
* NatType = "Enhanced",
* VswitchId = exampleSwitch.Id,
* NetworkType = "intranet",
* });
* var exampleNatIpCidr = new AliCloud.Vpc.NatIpCidr("example", new()
* {
* NatGatewayId = exampleNatGateway.Id,
* NatIpCidrName = "terraform-example",
* NatIpCidrBlock = "192.168.0.0/16",
* });
* });
* ```
* ```go
* package main
* import (
* "github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud"
* "github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/vpc"
* "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
* )
* func main() {
* pulumi.Run(func(ctx *pulumi.Context) error {
* example, err := alicloud.GetZones(ctx, &alicloud.GetZonesArgs{
* AvailableResourceCreation: pulumi.StringRef("VSwitch"),
* }, nil)
* if err != nil {
* return err
* }
* exampleNetwork, err := vpc.NewNetwork(ctx, "example", &vpc.NetworkArgs{
* VpcName: pulumi.String("terraform-example"),
* CidrBlock: pulumi.String("172.16.0.0/12"),
* })
* if err != nil {
* return err
* }
* exampleSwitch, err := vpc.NewSwitch(ctx, "example", &vpc.SwitchArgs{
* VpcId: exampleNetwork.ID(),
* CidrBlock: pulumi.String("172.16.0.0/21"),
* ZoneId: pulumi.String(example.Zones[0].Id),
* VswitchName: pulumi.String("terraform-example"),
* })
* if err != nil {
* return err
* }
* exampleNatGateway, err := vpc.NewNatGateway(ctx, "example", &vpc.NatGatewayArgs{
* VpcId: exampleNetwork.ID(),
* InternetChargeType: pulumi.String("PayByLcu"),
* NatGatewayName: pulumi.String("terraform-example"),
* Description: pulumi.String("terraform-example"),
* NatType: pulumi.String("Enhanced"),
* VswitchId: exampleSwitch.ID(),
* NetworkType: pulumi.String("intranet"),
* })
* if err != nil {
* return err
* }
* _, err = vpc.NewNatIpCidr(ctx, "example", &vpc.NatIpCidrArgs{
* NatGatewayId: exampleNatGateway.ID(),
* NatIpCidrName: pulumi.String("terraform-example"),
* NatIpCidr: pulumi.String("192.168.0.0/16"),
* })
* if err != nil {
* return err
* }
* return nil
* })
* }
* ```
* ```java
* package generated_program;
* import com.pulumi.Context;
* import com.pulumi.Pulumi;
* import com.pulumi.core.Output;
* import com.pulumi.alicloud.AlicloudFunctions;
* import com.pulumi.alicloud.inputs.GetZonesArgs;
* import com.pulumi.alicloud.vpc.Network;
* import com.pulumi.alicloud.vpc.NetworkArgs;
* import com.pulumi.alicloud.vpc.Switch;
* import com.pulumi.alicloud.vpc.SwitchArgs;
* import com.pulumi.alicloud.vpc.NatGateway;
* import com.pulumi.alicloud.vpc.NatGatewayArgs;
* import com.pulumi.alicloud.vpc.NatIpCidr;
* import com.pulumi.alicloud.vpc.NatIpCidrArgs;
* 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) {
* final var example = AlicloudFunctions.getZones(GetZonesArgs.builder()
* .availableResourceCreation("VSwitch")
* .build());
* var exampleNetwork = new Network("exampleNetwork", NetworkArgs.builder()
* .vpcName("terraform-example")
* .cidrBlock("172.16.0.0/12")
* .build());
* var exampleSwitch = new Switch("exampleSwitch", SwitchArgs.builder()
* .vpcId(exampleNetwork.id())
* .cidrBlock("172.16.0.0/21")
* .zoneId(example.applyValue(getZonesResult -> getZonesResult.zones()[0].id()))
* .vswitchName("terraform-example")
* .build());
* var exampleNatGateway = new NatGateway("exampleNatGateway", NatGatewayArgs.builder()
* .vpcId(exampleNetwork.id())
* .internetChargeType("PayByLcu")
* .natGatewayName("terraform-example")
* .description("terraform-example")
* .natType("Enhanced")
* .vswitchId(exampleSwitch.id())
* .networkType("intranet")
* .build());
* var exampleNatIpCidr = new NatIpCidr("exampleNatIpCidr", NatIpCidrArgs.builder()
* .natGatewayId(exampleNatGateway.id())
* .natIpCidrName("terraform-example")
* .natIpCidr("192.168.0.0/16")
* .build());
* }
* }
* ```
* ```yaml
* resources:
* exampleNetwork:
* type: alicloud:vpc:Network
* name: example
* properties:
* vpcName: terraform-example
* cidrBlock: 172.16.0.0/12
* exampleSwitch:
* type: alicloud:vpc:Switch
* name: example
* properties:
* vpcId: ${exampleNetwork.id}
* cidrBlock: 172.16.0.0/21
* zoneId: ${example.zones[0].id}
* vswitchName: terraform-example
* exampleNatGateway:
* type: alicloud:vpc:NatGateway
* name: example
* properties:
* vpcId: ${exampleNetwork.id}
* internetChargeType: PayByLcu
* natGatewayName: terraform-example
* description: terraform-example
* natType: Enhanced
* vswitchId: ${exampleSwitch.id}
* networkType: intranet
* exampleNatIpCidr:
* type: alicloud:vpc:NatIpCidr
* name: example
* properties:
* natGatewayId: ${exampleNatGateway.id}
* natIpCidrName: terraform-example
* natIpCidr: 192.168.0.0/16
* variables:
* example:
* fn::invoke:
* Function: alicloud:getZones
* Arguments:
* availableResourceCreation: VSwitch
* ```
*
* ## Import
* VPC Nat Ip Cidr can be imported using the id, e.g.
* ```sh
* $ pulumi import alicloud:vpc/natIpCidr:NatIpCidr example :
* ```
*/
public class NatIpCidr internal constructor(
override val javaResource: com.pulumi.alicloud.vpc.NatIpCidr,
) : KotlinCustomResource(javaResource, NatIpCidrMapper) {
/**
* Specifies whether to precheck this request only. Valid values: `true` and `false`.
*/
public val dryRun: Output
get() = javaResource.dryRun().applyValue({ args0 -> args0 })
/**
* The ID of the Virtual Private Cloud (VPC) NAT gateway where you want to create the NAT CIDR block.
*/
public val natGatewayId: Output
get() = javaResource.natGatewayId().applyValue({ args0 -> args0 })
/**
* The NAT CIDR block to be created. The CIDR block must meet the following conditions: It must be `10.0.0.0/8`, `172.16.0.0/12`, `192.168.0.0/16`, or one of their subnets. The subnet mask must be `16` to `32` bits in lengths. To use a public CIDR block as the NAT CIDR block, the VPC to which the VPC NAT gateway belongs must be authorized to use public CIDR blocks. For more information, see [Create a VPC NAT gateway](https://www.alibabacloud.com/help/doc-detail/268230.htm).
*/
public val natIpCidr: Output?
get() = javaResource.natIpCidr().applyValue({ args0 -> args0.map({ args0 -> args0 }).orElse(null) })
/**
* The description of the NAT CIDR block. The description must be `2` to `256` characters in length. It must start with a letter but cannot start with `http://` or `https://`.
*/
public val natIpCidrDescription: Output?
get() = javaResource.natIpCidrDescription().applyValue({ args0 ->
args0.map({ args0 ->
args0
}).orElse(null)
})
/**
* The name of the NAT CIDR block. The name must be `2` to `128` characters in length and can contain digits, periods (.), underscores (_), and hyphens (-). It must start with a letter. It must start with a letter but cannot start with `http://` or `https://`.
*/
public val natIpCidrName: Output?
get() = javaResource.natIpCidrName().applyValue({ args0 ->
args0.map({ args0 ->
args0
}).orElse(null)
})
/**
* The status of the CIDR block of the NAT gateway. Valid values: `Available`.
*/
public val status: Output
get() = javaResource.status().applyValue({ args0 -> args0 })
}
public object NatIpCidrMapper : ResourceMapper {
override fun supportsMappingOfType(javaResource: Resource): Boolean =
com.pulumi.alicloud.vpc.NatIpCidr::class == javaResource::class
override fun map(javaResource: Resource): NatIpCidr = NatIpCidr(
javaResource as
com.pulumi.alicloud.vpc.NatIpCidr,
)
}
/**
* @see [NatIpCidr].
* @param name The _unique_ name of the resulting resource.
* @param block Builder for [NatIpCidr].
*/
public suspend fun natIpCidr(name: String, block: suspend NatIpCidrResourceBuilder.() -> Unit): NatIpCidr {
val builder = NatIpCidrResourceBuilder()
builder.name(name)
block(builder)
return builder.build()
}
/**
* @see [NatIpCidr].
* @param name The _unique_ name of the resulting resource.
*/
public fun natIpCidr(name: String): NatIpCidr {
val builder = NatIpCidrResourceBuilder()
builder.name(name)
return builder.build()
}