1. Packages
  2. Google Cloud (GCP) Classic
  3. API Docs
  4. networksecurity
  5. AddressGroup
Google Cloud Classic v6.57.0 published on Tuesday, May 30, 2023 by Pulumi

gcp.networksecurity.AddressGroup

Explore with Pulumi AI

gcp logo
Google Cloud Classic v6.57.0 published on Tuesday, May 30, 2023 by Pulumi

    Import

    AddressGroup can be imported using any of these accepted formats

     $ pulumi import gcp:networksecurity/addressGroup:AddressGroup default {{parent}}/locations/{{location}}/addressGroups/{{name}}
    

    Example Usage

    Network Security Address Groups Basic

    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()
        {
            Parent = "projects/my-project-name",
            Location = "us-central1",
            Type = "IPV4",
            Capacity = 100,
            Items = new[]
            {
                "208.80.154.224/32",
            },
        }, new CustomResourceOptions
        {
            Provider = google_beta,
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-gcp/sdk/v6/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{
    			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"),
    			},
    		}, pulumi.Provider(google_beta))
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    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 com.pulumi.resources.CustomResourceOptions;
    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()        
                .parent("projects/my-project-name")
                .location("us-central1")
                .type("IPV4")
                .capacity("100")
                .items("208.80.154.224/32")
                .build(), CustomResourceOptions.builder()
                    .provider(google_beta)
                    .build());
    
        }
    }
    
    import pulumi
    import pulumi_gcp as gcp
    
    default = gcp.networksecurity.AddressGroup("default",
        parent="projects/my-project-name",
        location="us-central1",
        type="IPV4",
        capacity=100,
        items=["208.80.154.224/32"],
        opts=pulumi.ResourceOptions(provider=google_beta))
    
    import * as pulumi from "@pulumi/pulumi";
    import * as gcp from "@pulumi/gcp";
    
    const _default = new gcp.networksecurity.AddressGroup("default", {
        parent: "projects/my-project-name",
        location: "us-central1",
        type: "IPV4",
        capacity: 100,
        items: ["208.80.154.224/32"],
    }, {
        provider: google_beta,
    });
    
    resources:
      default:
        type: gcp:networksecurity:AddressGroup
        properties:
          parent: projects/my-project-name
          location: us-central1
          type: IPV4
          capacity: '100'
          items:
            - 208.80.154.224/32
        options:
          provider: ${["google-beta"]}
    

    Network Security Address Groups Organization Basic

    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()
        {
            Parent = "organizations/123456789",
            Location = "us-central1",
            Type = "IPV4",
            Capacity = 100,
            Items = new[]
            {
                "208.80.154.224/32",
            },
        }, new CustomResourceOptions
        {
            Provider = google_beta,
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-gcp/sdk/v6/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{
    			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"),
    			},
    		}, pulumi.Provider(google_beta))
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    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 com.pulumi.resources.CustomResourceOptions;
    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()        
                .parent("organizations/123456789")
                .location("us-central1")
                .type("IPV4")
                .capacity("100")
                .items("208.80.154.224/32")
                .build(), CustomResourceOptions.builder()
                    .provider(google_beta)
                    .build());
    
        }
    }
    
    import pulumi
    import pulumi_gcp as gcp
    
    default = gcp.networksecurity.AddressGroup("default",
        parent="organizations/123456789",
        location="us-central1",
        type="IPV4",
        capacity=100,
        items=["208.80.154.224/32"],
        opts=pulumi.ResourceOptions(provider=google_beta))
    
    import * as pulumi from "@pulumi/pulumi";
    import * as gcp from "@pulumi/gcp";
    
    const _default = new gcp.networksecurity.AddressGroup("default", {
        parent: "organizations/123456789",
        location: "us-central1",
        type: "IPV4",
        capacity: 100,
        items: ["208.80.154.224/32"],
    }, {
        provider: google_beta,
    });
    
    resources:
      default:
        type: gcp:networksecurity:AddressGroup
        properties:
          parent: organizations/123456789
          location: us-central1
          type: IPV4
          capacity: '100'
          items:
            - 208.80.154.224/32
        options:
          provider: ${["google-beta"]}
    

    Network Security Address Groups Advanced

    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()
        {
            Parent = "projects/my-project-name",
            Location = "us-central1",
            Description = "my description",
            Type = "IPV4",
            Capacity = 100,
            Items = new[]
            {
                "208.80.154.224/32",
            },
        }, new CustomResourceOptions
        {
            Provider = google_beta,
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-gcp/sdk/v6/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{
    			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"),
    			},
    		}, pulumi.Provider(google_beta))
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    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 com.pulumi.resources.CustomResourceOptions;
    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()        
                .parent("projects/my-project-name")
                .location("us-central1")
                .description("my description")
                .type("IPV4")
                .capacity("100")
                .items("208.80.154.224/32")
                .build(), CustomResourceOptions.builder()
                    .provider(google_beta)
                    .build());
    
        }
    }
    
    import pulumi
    import pulumi_gcp as gcp
    
    default = gcp.networksecurity.AddressGroup("default",
        parent="projects/my-project-name",
        location="us-central1",
        description="my description",
        type="IPV4",
        capacity=100,
        items=["208.80.154.224/32"],
        opts=pulumi.ResourceOptions(provider=google_beta))
    
    import * as pulumi from "@pulumi/pulumi";
    import * as gcp from "@pulumi/gcp";
    
    const _default = new gcp.networksecurity.AddressGroup("default", {
        parent: "projects/my-project-name",
        location: "us-central1",
        description: "my description",
        type: "IPV4",
        capacity: 100,
        items: ["208.80.154.224/32"],
    }, {
        provider: google_beta,
    });
    
    resources:
      default:
        type: gcp:networksecurity:AddressGroup
        properties:
          parent: projects/my-project-name
          location: us-central1
          description: my description
          type: IPV4
          capacity: '100'
          items:
            - 208.80.154.224/32
        options:
          provider: ${["google-beta"]}
    

    Create AddressGroup Resource

    new AddressGroup(name: string, args: AddressGroupArgs, opts?: CustomResourceOptions);
    @overload
    def AddressGroup(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     capacity: Optional[int] = None,
                     description: Optional[str] = None,
                     items: Optional[Sequence[str]] = None,
                     labels: Optional[Mapping[str, str]] = None,
                     location: Optional[str] = None,
                     name: Optional[str] = None,
                     parent: Optional[str] = None,
                     type: Optional[str] = None)
    @overload
    def AddressGroup(resource_name: str,
                     args: AddressGroupArgs,
                     opts: Optional[ResourceOptions] = None)
    func NewAddressGroup(ctx *Context, name string, args AddressGroupArgs, opts ...ResourceOption) (*AddressGroup, error)
    public AddressGroup(string name, AddressGroupArgs args, CustomResourceOptions? opts = null)
    public AddressGroup(String name, AddressGroupArgs args)
    public AddressGroup(String name, AddressGroupArgs args, CustomResourceOptions options)
    
    type: gcp:networksecurity:AddressGroup
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args AddressGroupArgs
    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 AddressGroupArgs
    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 AddressGroupArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AddressGroupArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AddressGroupArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    AddressGroup Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The AddressGroup resource accepts the following input properties:

    Capacity int

    Capacity of the Address Group.

    Location string

    The location of the gateway security policy. The default value is global.


    Type string

    The type of the Address Group. Possible values are "IPV4" or "IPV6". Possible values are: IPV4, IPV6.

    Description string

    Free-text description of the resource.

    Items List<string>

    List of items.

    Labels Dictionary<string, string>

    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" }.

    Name string

    Name of the AddressGroup resource.

    Parent string

    The name of the parent this address group belongs to. Format: organizations/{organization_id} or projects/{project_id}.

    Capacity int

    Capacity of the Address Group.

    Location string

    The location of the gateway security policy. The default value is global.


    Type string

    The type of the Address Group. Possible values are "IPV4" or "IPV6". Possible values are: IPV4, IPV6.

    Description string

    Free-text description of the resource.

    Items []string

    List of items.

    Labels map[string]string

    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" }.

    Name string

    Name of the AddressGroup resource.

    Parent string

    The name of the parent this address group belongs to. Format: organizations/{organization_id} or projects/{project_id}.

    capacity Integer

    Capacity of the Address Group.

    location String

    The location of the gateway security policy. The default value is global.


    type String

    The type of the Address Group. Possible values are "IPV4" or "IPV6". Possible values are: IPV4, IPV6.

    description String

    Free-text description of the resource.

    items List<String>

    List of items.

    labels Map<String,String>

    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" }.

    name String

    Name of the AddressGroup resource.

    parent String

    The name of the parent this address group belongs to. Format: organizations/{organization_id} or projects/{project_id}.

    capacity number

    Capacity of the Address Group.

    location string

    The location of the gateway security policy. The default value is global.


    type string

    The type of the Address Group. Possible values are "IPV4" or "IPV6". Possible values are: IPV4, IPV6.

    description string

    Free-text description of the resource.

    items string[]

    List of items.

    labels {[key: string]: string}

    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" }.

    name string

    Name of the AddressGroup resource.

    parent string

    The name of the parent this address group belongs to. Format: organizations/{organization_id} or projects/{project_id}.

    capacity int

    Capacity of the Address Group.

    location str

    The location of the gateway security policy. The default value is global.


    type str

    The type of the Address Group. Possible values are "IPV4" or "IPV6". Possible values are: IPV4, IPV6.

    description str

    Free-text description of the resource.

    items Sequence[str]

    List of items.

    labels Mapping[str, str]

    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" }.

    name str

    Name of the AddressGroup resource.

    parent str

    The name of the parent this address group belongs to. Format: organizations/{organization_id} or projects/{project_id}.

    capacity Number

    Capacity of the Address Group.

    location String

    The location of the gateway security policy. The default value is global.


    type String

    The type of the Address Group. Possible values are "IPV4" or "IPV6". Possible values are: IPV4, IPV6.

    description String

    Free-text description of the resource.

    items List<String>

    List of items.

    labels Map<String>

    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" }.

    name String

    Name of the AddressGroup resource.

    parent String

    The name of the parent this address group belongs to. Format: organizations/{organization_id} or projects/{project_id}.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the AddressGroup resource produces the following output properties:

    CreateTime string

    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"

    Id string

    The provider-assigned unique ID for this managed resource.

    UpdateTime string

    The timestamp when the resource was updated. 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".

    CreateTime string

    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"

    Id string

    The provider-assigned unique ID for this managed resource.

    UpdateTime string

    The timestamp when the resource was updated. 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".

    createTime String

    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"

    id String

    The provider-assigned unique ID for this managed resource.

    updateTime String

    The timestamp when the resource was updated. 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".

    createTime string

    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"

    id string

    The provider-assigned unique ID for this managed resource.

    updateTime string

    The timestamp when the resource was updated. 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".

    create_time str

    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"

    id str

    The provider-assigned unique ID for this managed resource.

    update_time str

    The timestamp when the resource was updated. 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".

    createTime String

    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"

    id String

    The provider-assigned unique ID for this managed resource.

    updateTime String

    The timestamp when the resource was updated. 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".

    Look up Existing AddressGroup Resource

    Get an existing AddressGroup 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?: AddressGroupState, opts?: CustomResourceOptions): AddressGroup
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            capacity: Optional[int] = None,
            create_time: Optional[str] = None,
            description: Optional[str] = None,
            items: Optional[Sequence[str]] = None,
            labels: Optional[Mapping[str, str]] = None,
            location: Optional[str] = None,
            name: Optional[str] = None,
            parent: Optional[str] = None,
            type: Optional[str] = None,
            update_time: Optional[str] = None) -> AddressGroup
    func GetAddressGroup(ctx *Context, name string, id IDInput, state *AddressGroupState, opts ...ResourceOption) (*AddressGroup, error)
    public static AddressGroup Get(string name, Input<string> id, AddressGroupState? state, CustomResourceOptions? opts = null)
    public static AddressGroup get(String name, Output<String> id, AddressGroupState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    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.
    The following state arguments are supported:
    Capacity int

    Capacity of the Address Group.

    CreateTime string

    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"

    Description string

    Free-text description of the resource.

    Items List<string>

    List of items.

    Labels Dictionary<string, string>

    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" }.

    Location string

    The location of the gateway security policy. The default value is global.


    Name string

    Name of the AddressGroup resource.

    Parent string

    The name of the parent this address group belongs to. Format: organizations/{organization_id} or projects/{project_id}.

    Type string

    The type of the Address Group. Possible values are "IPV4" or "IPV6". Possible values are: IPV4, IPV6.

    UpdateTime string

    The timestamp when the resource was updated. 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".

    Capacity int

    Capacity of the Address Group.

    CreateTime string

    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"

    Description string

    Free-text description of the resource.

    Items []string

    List of items.

    Labels map[string]string

    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" }.

    Location string

    The location of the gateway security policy. The default value is global.


    Name string

    Name of the AddressGroup resource.

    Parent string

    The name of the parent this address group belongs to. Format: organizations/{organization_id} or projects/{project_id}.

    Type string

    The type of the Address Group. Possible values are "IPV4" or "IPV6". Possible values are: IPV4, IPV6.

    UpdateTime string

    The timestamp when the resource was updated. 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".

    capacity Integer

    Capacity of the Address Group.

    createTime String

    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"

    description String

    Free-text description of the resource.

    items List<String>

    List of items.

    labels Map<String,String>

    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" }.

    location String

    The location of the gateway security policy. The default value is global.


    name String

    Name of the AddressGroup resource.

    parent String

    The name of the parent this address group belongs to. Format: organizations/{organization_id} or projects/{project_id}.

    type String

    The type of the Address Group. Possible values are "IPV4" or "IPV6". Possible values are: IPV4, IPV6.

    updateTime String

    The timestamp when the resource was updated. 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".

    capacity number

    Capacity of the Address Group.

    createTime string

    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"

    description string

    Free-text description of the resource.

    items string[]

    List of items.

    labels {[key: string]: string}

    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" }.

    location string

    The location of the gateway security policy. The default value is global.


    name string

    Name of the AddressGroup resource.

    parent string

    The name of the parent this address group belongs to. Format: organizations/{organization_id} or projects/{project_id}.

    type string

    The type of the Address Group. Possible values are "IPV4" or "IPV6". Possible values are: IPV4, IPV6.

    updateTime string

    The timestamp when the resource was updated. 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".

    capacity int

    Capacity of the Address Group.

    create_time str

    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"

    description str

    Free-text description of the resource.

    items Sequence[str]

    List of items.

    labels Mapping[str, str]

    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" }.

    location str

    The location of the gateway security policy. The default value is global.


    name str

    Name of the AddressGroup resource.

    parent str

    The name of the parent this address group belongs to. Format: organizations/{organization_id} or projects/{project_id}.

    type str

    The type of the Address Group. Possible values are "IPV4" or "IPV6". Possible values are: IPV4, IPV6.

    update_time str

    The timestamp when the resource was updated. 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".

    capacity Number

    Capacity of the Address Group.

    createTime String

    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"

    description String

    Free-text description of the resource.

    items List<String>

    List of items.

    labels Map<String>

    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" }.

    location String

    The location of the gateway security policy. The default value is global.


    name String

    Name of the AddressGroup resource.

    parent String

    The name of the parent this address group belongs to. Format: organizations/{organization_id} or projects/{project_id}.

    type String

    The type of the Address Group. Possible values are "IPV4" or "IPV6". Possible values are: IPV4, IPV6.

    updateTime String

    The timestamp when the resource was updated. 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".

    Package Details

    Repository
    Google Cloud (GCP) Classic pulumi/pulumi-gcp
    License
    Apache-2.0
    Notes

    This Pulumi package is based on the google-beta Terraform Provider.

    gcp logo
    Google Cloud Classic v6.57.0 published on Tuesday, May 30, 2023 by Pulumi