com.pulumi.gcp.networksecurity.kotlin.AddressGroup.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.networksecurity.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.Int
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.collections.Map
/**
* Builder for [AddressGroup].
*/
@PulumiTagMarker
public class AddressGroupResourceBuilder internal constructor() {
public var name: String? = null
public var args: AddressGroupArgs = AddressGroupArgs()
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 AddressGroupArgsBuilder.() -> Unit) {
val builder = AddressGroupArgsBuilder()
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(): AddressGroup {
val builtJavaResource = com.pulumi.gcp.networksecurity.AddressGroup(
this.name,
this.args.toJava(),
this.opts.toJava(),
)
return AddressGroup(builtJavaResource)
}
}
/**
* AddressGroup is a resource that specifies how a collection of IP/DNS used in Firewall Policy.
* To get more information about AddressGroup, see:
* * [API documentation](https://cloud.google.com/traffic-director/docs/reference/network-security/rest/v1beta1/organizations.locations.addressGroups)
* * How-to Guides
* * [Use AddressGroups](https://cloud.google.com/vpc/docs/use-address-groups-firewall-policies)
* ## Example Usage
* ### Network Security Address Groups Basic
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as gcp from "@pulumi/gcp";
* const _default = new gcp.networksecurity.AddressGroup("default", {
* name: "my-address-groups",
* parent: "projects/my-project-name",
* location: "us-central1",
* type: "IPV4",
* capacity: 100,
* items: ["208.80.154.224/32"],
* });
* ```
* ```python
* import pulumi
* import pulumi_gcp as gcp
* default = gcp.networksecurity.AddressGroup("default",
* name="my-address-groups",
* parent="projects/my-project-name",
* location="us-central1",
* type="IPV4",
* capacity=100,
* items=["208.80.154.224/32"])
* ```
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using Gcp = Pulumi.Gcp;
* return await Deployment.RunAsync(() =>
* {
* var @default = new Gcp.NetworkSecurity.AddressGroup("default", new()
* {
* Name = "my-address-groups",
* Parent = "projects/my-project-name",
* Location = "us-central1",
* Type = "IPV4",
* Capacity = 100,
* Items = new[]
* {
* "208.80.154.224/32",
* },
* });
* });
* ```
* ```go
* package main
* import (
* "github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/networksecurity"
* "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
* )
* func main() {
* pulumi.Run(func(ctx *pulumi.Context) error {
* _, err := networksecurity.NewAddressGroup(ctx, "default", &networksecurity.AddressGroupArgs{
* Name: pulumi.String("my-address-groups"),
* Parent: pulumi.String("projects/my-project-name"),
* Location: pulumi.String("us-central1"),
* Type: pulumi.String("IPV4"),
* Capacity: pulumi.Int(100),
* Items: pulumi.StringArray{
* pulumi.String("208.80.154.224/32"),
* },
* })
* 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.networksecurity.AddressGroup;
* import com.pulumi.gcp.networksecurity.AddressGroupArgs;
* 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 default_ = new AddressGroup("default", AddressGroupArgs.builder()
* .name("my-address-groups")
* .parent("projects/my-project-name")
* .location("us-central1")
* .type("IPV4")
* .capacity("100")
* .items("208.80.154.224/32")
* .build());
* }
* }
* ```
* ```yaml
* resources:
* default:
* type: gcp:networksecurity:AddressGroup
* properties:
* name: my-address-groups
* parent: projects/my-project-name
* location: us-central1
* type: IPV4
* capacity: '100'
* items:
* - 208.80.154.224/32
* ```
*
* ### Network Security Address Groups Organization Basic
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as gcp from "@pulumi/gcp";
* const _default = new gcp.networksecurity.AddressGroup("default", {
* name: "my-address-groups",
* parent: "organizations/123456789",
* location: "us-central1",
* type: "IPV4",
* capacity: 100,
* items: ["208.80.154.224/32"],
* });
* ```
* ```python
* import pulumi
* import pulumi_gcp as gcp
* default = gcp.networksecurity.AddressGroup("default",
* name="my-address-groups",
* parent="organizations/123456789",
* location="us-central1",
* type="IPV4",
* capacity=100,
* items=["208.80.154.224/32"])
* ```
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using Gcp = Pulumi.Gcp;
* return await Deployment.RunAsync(() =>
* {
* var @default = new Gcp.NetworkSecurity.AddressGroup("default", new()
* {
* Name = "my-address-groups",
* Parent = "organizations/123456789",
* Location = "us-central1",
* Type = "IPV4",
* Capacity = 100,
* Items = new[]
* {
* "208.80.154.224/32",
* },
* });
* });
* ```
* ```go
* package main
* import (
* "github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/networksecurity"
* "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
* )
* func main() {
* pulumi.Run(func(ctx *pulumi.Context) error {
* _, err := networksecurity.NewAddressGroup(ctx, "default", &networksecurity.AddressGroupArgs{
* Name: pulumi.String("my-address-groups"),
* Parent: pulumi.String("organizations/123456789"),
* Location: pulumi.String("us-central1"),
* Type: pulumi.String("IPV4"),
* Capacity: pulumi.Int(100),
* Items: pulumi.StringArray{
* pulumi.String("208.80.154.224/32"),
* },
* })
* 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.networksecurity.AddressGroup;
* import com.pulumi.gcp.networksecurity.AddressGroupArgs;
* 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 default_ = new AddressGroup("default", AddressGroupArgs.builder()
* .name("my-address-groups")
* .parent("organizations/123456789")
* .location("us-central1")
* .type("IPV4")
* .capacity("100")
* .items("208.80.154.224/32")
* .build());
* }
* }
* ```
* ```yaml
* resources:
* default:
* type: gcp:networksecurity:AddressGroup
* properties:
* name: my-address-groups
* parent: organizations/123456789
* location: us-central1
* type: IPV4
* capacity: '100'
* items:
* - 208.80.154.224/32
* ```
*
* ### Network Security Address Groups Advanced
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as gcp from "@pulumi/gcp";
* const _default = new gcp.networksecurity.AddressGroup("default", {
* name: "my-address-groups",
* parent: "projects/my-project-name",
* location: "us-central1",
* description: "my description",
* type: "IPV4",
* capacity: 100,
* items: ["208.80.154.224/32"],
* });
* ```
* ```python
* import pulumi
* import pulumi_gcp as gcp
* default = gcp.networksecurity.AddressGroup("default",
* name="my-address-groups",
* parent="projects/my-project-name",
* location="us-central1",
* description="my description",
* type="IPV4",
* capacity=100,
* items=["208.80.154.224/32"])
* ```
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using Gcp = Pulumi.Gcp;
* return await Deployment.RunAsync(() =>
* {
* var @default = new Gcp.NetworkSecurity.AddressGroup("default", new()
* {
* Name = "my-address-groups",
* Parent = "projects/my-project-name",
* Location = "us-central1",
* Description = "my description",
* Type = "IPV4",
* Capacity = 100,
* Items = new[]
* {
* "208.80.154.224/32",
* },
* });
* });
* ```
* ```go
* package main
* import (
* "github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/networksecurity"
* "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
* )
* func main() {
* pulumi.Run(func(ctx *pulumi.Context) error {
* _, err := networksecurity.NewAddressGroup(ctx, "default", &networksecurity.AddressGroupArgs{
* Name: pulumi.String("my-address-groups"),
* Parent: pulumi.String("projects/my-project-name"),
* Location: pulumi.String("us-central1"),
* Description: pulumi.String("my description"),
* Type: pulumi.String("IPV4"),
* Capacity: pulumi.Int(100),
* Items: pulumi.StringArray{
* pulumi.String("208.80.154.224/32"),
* },
* })
* 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.networksecurity.AddressGroup;
* import com.pulumi.gcp.networksecurity.AddressGroupArgs;
* 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 default_ = new AddressGroup("default", AddressGroupArgs.builder()
* .name("my-address-groups")
* .parent("projects/my-project-name")
* .location("us-central1")
* .description("my description")
* .type("IPV4")
* .capacity("100")
* .items("208.80.154.224/32")
* .build());
* }
* }
* ```
* ```yaml
* resources:
* default:
* type: gcp:networksecurity:AddressGroup
* properties:
* name: my-address-groups
* parent: projects/my-project-name
* location: us-central1
* description: my description
* type: IPV4
* capacity: '100'
* items:
* - 208.80.154.224/32
* ```
*
* ## Import
* AddressGroup can be imported using any of these accepted formats:
* * `{{parent}}/locations/{{location}}/addressGroups/{{name}}`
* When using the `pulumi import` command, AddressGroup can be imported using one of the formats above. For example:
* ```sh
* $ pulumi import gcp:networksecurity/addressGroup:AddressGroup default {{parent}}/locations/{{location}}/addressGroups/{{name}}
* ```
*/
public class AddressGroup internal constructor(
override val javaResource: com.pulumi.gcp.networksecurity.AddressGroup,
) : KotlinCustomResource(javaResource, AddressGroupMapper) {
/**
* Capacity of the Address Group.
*/
public val capacity: Output
get() = javaResource.capacity().applyValue({ args0 -> args0 })
/**
* The timestamp when the resource was created.
* A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits.
* Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z"
*/
public val createTime: Output
get() = javaResource.createTime().applyValue({ args0 -> args0 })
/**
* Free-text description of the resource.
*/
public val description: Output?
get() = javaResource.description().applyValue({ args0 ->
args0.map({ args0 ->
args0
}).orElse(null)
})
/**
* All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
*/
public val effectiveLabels: Output
© 2015 - 2024 Weber Informatics LLC | Privacy Policy