com.pulumi.gcp.edgenetwork.kotlin.SubnetArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-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.gcp.edgenetwork.kotlin
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.edgenetwork.SubnetArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Int
import kotlin.Pair
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.collections.Map
import kotlin.jvm.JvmName
/**
* A Distributed Cloud Edge subnet, which provides L2 isolation within a network.
* To get more information about Subnet, see:
* * [API documentation](https://cloud.google.com/distributed-cloud/edge/latest/docs/reference/network/rest/v1/projects.locations.zones.subnets)
* * How-to Guides
* * [Create and manage subnetworks](https://cloud.google.com/distributed-cloud/edge/latest/docs/subnetworks#api)
* ## Example Usage
* ### Edgenetwork Subnet
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as gcp from "@pulumi/gcp";
* const exampleNetwork = new gcp.edgenetwork.Network("example_network", {
* networkId: "example-network",
* location: "us-west1",
* zone: "",
* description: "Example network.",
* mtu: 9000,
* });
* const exampleSubnet = new gcp.edgenetwork.Subnet("example_subnet", {
* subnetId: "example-subnet",
* location: "us-west1",
* zone: "",
* description: "Example subnet.",
* network: exampleNetwork.id,
* ipv4Cidrs: ["4.4.4.1/24"],
* labels: {
* environment: "dev",
* },
* });
* ```
* ```python
* import pulumi
* import pulumi_gcp as gcp
* example_network = gcp.edgenetwork.Network("example_network",
* network_id="example-network",
* location="us-west1",
* zone="",
* description="Example network.",
* mtu=9000)
* example_subnet = gcp.edgenetwork.Subnet("example_subnet",
* subnet_id="example-subnet",
* location="us-west1",
* zone="",
* description="Example subnet.",
* network=example_network.id,
* ipv4_cidrs=["4.4.4.1/24"],
* labels={
* "environment": "dev",
* })
* ```
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using Gcp = Pulumi.Gcp;
* return await Deployment.RunAsync(() =>
* {
* var exampleNetwork = new Gcp.EdgeNetwork.Network("example_network", new()
* {
* NetworkId = "example-network",
* Location = "us-west1",
* Zone = "",
* Description = "Example network.",
* Mtu = 9000,
* });
* var exampleSubnet = new Gcp.EdgeNetwork.Subnet("example_subnet", new()
* {
* SubnetId = "example-subnet",
* Location = "us-west1",
* Zone = "",
* Description = "Example subnet.",
* Network = exampleNetwork.Id,
* Ipv4Cidrs = new[]
* {
* "4.4.4.1/24",
* },
* Labels =
* {
* { "environment", "dev" },
* },
* });
* });
* ```
* ```go
* package main
* import (
* "github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/edgenetwork"
* "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
* )
* func main() {
* pulumi.Run(func(ctx *pulumi.Context) error {
* exampleNetwork, err := edgenetwork.NewNetwork(ctx, "example_network", &edgenetwork.NetworkArgs{
* NetworkId: pulumi.String("example-network"),
* Location: pulumi.String("us-west1"),
* Zone: pulumi.String(""),
* Description: pulumi.String("Example network."),
* Mtu: pulumi.Int(9000),
* })
* if err != nil {
* return err
* }
* _, err = edgenetwork.NewSubnet(ctx, "example_subnet", &edgenetwork.SubnetArgs{
* SubnetId: pulumi.String("example-subnet"),
* Location: pulumi.String("us-west1"),
* Zone: pulumi.String(""),
* Description: pulumi.String("Example subnet."),
* Network: exampleNetwork.ID(),
* Ipv4Cidrs: pulumi.StringArray{
* pulumi.String("4.4.4.1/24"),
* },
* Labels: pulumi.StringMap{
* "environment": pulumi.String("dev"),
* },
* })
* 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.gcp.edgenetwork.Network;
* import com.pulumi.gcp.edgenetwork.NetworkArgs;
* import com.pulumi.gcp.edgenetwork.Subnet;
* import com.pulumi.gcp.edgenetwork.SubnetArgs;
* 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 exampleNetwork = new Network("exampleNetwork", NetworkArgs.builder()
* .networkId("example-network")
* .location("us-west1")
* .zone("")
* .description("Example network.")
* .mtu(9000)
* .build());
* var exampleSubnet = new Subnet("exampleSubnet", SubnetArgs.builder()
* .subnetId("example-subnet")
* .location("us-west1")
* .zone("")
* .description("Example subnet.")
* .network(exampleNetwork.id())
* .ipv4Cidrs("4.4.4.1/24")
* .labels(Map.of("environment", "dev"))
* .build());
* }
* }
* ```
* ```yaml
* resources:
* exampleSubnet:
* type: gcp:edgenetwork:Subnet
* name: example_subnet
* properties:
* subnetId: example-subnet
* location: us-west1
* zone:
* description: Example subnet.
* network: ${exampleNetwork.id}
* ipv4Cidrs:
* - 4.4.4.1/24
* labels:
* environment: dev
* exampleNetwork:
* type: gcp:edgenetwork:Network
* name: example_network
* properties:
* networkId: example-network
* location: us-west1
* zone:
* description: Example network.
* mtu: 9000
* ```
*
* ### Edgenetwork Subnet With Vlan Id
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as gcp from "@pulumi/gcp";
* const exampleNetwork = new gcp.edgenetwork.Network("example_network", {
* networkId: "example-network",
* location: "us-west1",
* zone: "",
* description: "Example network.",
* mtu: 9000,
* });
* const exampleSubnetWithVlanId = new gcp.edgenetwork.Subnet("example_subnet_with_vlan_id", {
* subnetId: "example-subnet-with-vlan-id",
* location: "us-west1",
* zone: "",
* description: "Example subnet with VLAN ID.",
* network: exampleNetwork.id,
* ipv6Cidrs: ["4444:4444:4444:4444::1/64"],
* vlanId: 44,
* labels: {
* environment: "dev",
* },
* });
* ```
* ```python
* import pulumi
* import pulumi_gcp as gcp
* example_network = gcp.edgenetwork.Network("example_network",
* network_id="example-network",
* location="us-west1",
* zone="",
* description="Example network.",
* mtu=9000)
* example_subnet_with_vlan_id = gcp.edgenetwork.Subnet("example_subnet_with_vlan_id",
* subnet_id="example-subnet-with-vlan-id",
* location="us-west1",
* zone="",
* description="Example subnet with VLAN ID.",
* network=example_network.id,
* ipv6_cidrs=["4444:4444:4444:4444::1/64"],
* vlan_id=44,
* labels={
* "environment": "dev",
* })
* ```
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using Gcp = Pulumi.Gcp;
* return await Deployment.RunAsync(() =>
* {
* var exampleNetwork = new Gcp.EdgeNetwork.Network("example_network", new()
* {
* NetworkId = "example-network",
* Location = "us-west1",
* Zone = "",
* Description = "Example network.",
* Mtu = 9000,
* });
* var exampleSubnetWithVlanId = new Gcp.EdgeNetwork.Subnet("example_subnet_with_vlan_id", new()
* {
* SubnetId = "example-subnet-with-vlan-id",
* Location = "us-west1",
* Zone = "",
* Description = "Example subnet with VLAN ID.",
* Network = exampleNetwork.Id,
* Ipv6Cidrs = new[]
* {
* "4444:4444:4444:4444::1/64",
* },
* VlanId = 44,
* Labels =
* {
* { "environment", "dev" },
* },
* });
* });
* ```
* ```go
* package main
* import (
* "github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/edgenetwork"
* "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
* )
* func main() {
* pulumi.Run(func(ctx *pulumi.Context) error {
* exampleNetwork, err := edgenetwork.NewNetwork(ctx, "example_network", &edgenetwork.NetworkArgs{
* NetworkId: pulumi.String("example-network"),
* Location: pulumi.String("us-west1"),
* Zone: pulumi.String(""),
* Description: pulumi.String("Example network."),
* Mtu: pulumi.Int(9000),
* })
* if err != nil {
* return err
* }
* _, err = edgenetwork.NewSubnet(ctx, "example_subnet_with_vlan_id", &edgenetwork.SubnetArgs{
* SubnetId: pulumi.String("example-subnet-with-vlan-id"),
* Location: pulumi.String("us-west1"),
* Zone: pulumi.String(""),
* Description: pulumi.String("Example subnet with VLAN ID."),
* Network: exampleNetwork.ID(),
* Ipv6Cidrs: pulumi.StringArray{
* pulumi.String("4444:4444:4444:4444::1/64"),
* },
* VlanId: pulumi.Int(44),
* Labels: pulumi.StringMap{
* "environment": pulumi.String("dev"),
* },
* })
* 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.gcp.edgenetwork.Network;
* import com.pulumi.gcp.edgenetwork.NetworkArgs;
* import com.pulumi.gcp.edgenetwork.Subnet;
* import com.pulumi.gcp.edgenetwork.SubnetArgs;
* 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 exampleNetwork = new Network("exampleNetwork", NetworkArgs.builder()
* .networkId("example-network")
* .location("us-west1")
* .zone("")
* .description("Example network.")
* .mtu(9000)
* .build());
* var exampleSubnetWithVlanId = new Subnet("exampleSubnetWithVlanId", SubnetArgs.builder()
* .subnetId("example-subnet-with-vlan-id")
* .location("us-west1")
* .zone("")
* .description("Example subnet with VLAN ID.")
* .network(exampleNetwork.id())
* .ipv6Cidrs("4444:4444:4444:4444::1/64")
* .vlanId(44)
* .labels(Map.of("environment", "dev"))
* .build());
* }
* }
* ```
* ```yaml
* resources:
* exampleSubnetWithVlanId:
* type: gcp:edgenetwork:Subnet
* name: example_subnet_with_vlan_id
* properties:
* subnetId: example-subnet-with-vlan-id
* location: us-west1
* zone:
* description: Example subnet with VLAN ID.
* network: ${exampleNetwork.id}
* ipv6Cidrs:
* - 4444:4444:4444:4444::1/64
* vlanId: 44
* labels:
* environment: dev
* exampleNetwork:
* type: gcp:edgenetwork:Network
* name: example_network
* properties:
* networkId: example-network
* location: us-west1
* zone:
* description: Example network.
* mtu: 9000
* ```
*
* ## Import
* Subnet can be imported using any of these accepted formats:
* * `projects/{{project}}/locations/{{location}}/zones/{{zone}}/subnets/{{subnet_id}}`
* * `{{project}}/{{location}}/{{zone}}/{{subnet_id}}`
* * `{{location}}/{{zone}}/{{subnet_id}}`
* * `{{location}}/{{subnet_id}}`
* * `{{name}}`
* When using the `pulumi import` command, Subnet can be imported using one of the formats above. For example:
* ```sh
* $ pulumi import gcp:edgenetwork/subnet:Subnet default projects/{{project}}/locations/{{location}}/zones/{{zone}}/subnets/{{subnet_id}}
* ```
* ```sh
* $ pulumi import gcp:edgenetwork/subnet:Subnet default {{project}}/{{location}}/{{zone}}/{{subnet_id}}
* ```
* ```sh
* $ pulumi import gcp:edgenetwork/subnet:Subnet default {{location}}/{{zone}}/{{subnet_id}}
* ```
* ```sh
* $ pulumi import gcp:edgenetwork/subnet:Subnet default {{location}}/{{subnet_id}}
* ```
* ```sh
* $ pulumi import gcp:edgenetwork/subnet:Subnet default {{name}}
* ```
* @property description A free-text description of the resource. Max length 1024 characters.
* @property ipv4Cidrs The ranges of ipv4 addresses that are owned by this subnetwork, in CIDR format.
* @property ipv6Cidrs The ranges of ipv6 addresses that are owned by this subnetwork, in CIDR format.
* @property labels Labels associated with this resource.
* @property location The Google Cloud region to which the target Distributed Cloud Edge zone belongs.
* @property network The ID of the network to which this router belongs.
* Must be of the form: `projects/{{project}}/locations/{{location}}/zones/{{zone}}/networks/{{network_id}}`
* @property project The ID of the project in which the resource belongs.
* If it is not provided, the provider project is used.
* @property subnetId A unique ID that identifies this subnet.
* - - -
* @property vlanId VLAN ID for this subnetwork. If not specified, one is assigned automatically.
* @property zone The name of the target Distributed Cloud Edge zone.
*/
public data class SubnetArgs(
public val description: Output? = null,
public val ipv4Cidrs: Output>? = null,
public val ipv6Cidrs: Output>? = null,
public val labels: Output
© 2015 - 2025 Weber Informatics LLC | Privacy Policy