com.pulumi.gcp.networksecurity.kotlin.AddressGroupArgs.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.core.Output.of
import com.pulumi.gcp.networksecurity.AddressGroupArgs.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
/**
* 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}}
* ```
* @property capacity Capacity of the Address Group.
* @property description Free-text description of the resource.
* @property items List of items.
* @property labels Set of label tags associated with the AddressGroup resource.
* An object containing a list of "key": value pairs. Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
* **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
* Please refer to the field `effective_labels` for all of the labels present on the resource.
* @property location The location of the gateway security policy.
* The default value is `global`.
* - - -
* @property name Name of the AddressGroup resource.
* @property parent The name of the parent this address group belongs to. Format: organizations/{organization_id} or projects/{project_id}.
* @property type The type of the Address Group. Possible values are "IPV4" or "IPV6".
* Possible values are: `IPV4`, `IPV6`.
*/
public data class AddressGroupArgs(
public val capacity: Output? = null,
public val description: Output? = null,
public val items: Output>? = null,
public val labels: Output
© 2015 - 2025 Weber Informatics LLC | Privacy Policy