Show / Hide Table of Contents

Class GlobalAddressArgs

Inheritance
System.Object
InputArgs
ResourceArgs
GlobalAddressArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Gcp.Compute
Assembly: Pulumi.Gcp.dll
Syntax
public sealed class GlobalAddressArgs : ResourceArgs

Constructors

View Source

GlobalAddressArgs()

Declaration
public GlobalAddressArgs()

Properties

View Source

Address

The IP address or beginning of the address range represented by this resource. This can be supplied as an input to reserve a specific address or omitted to allow GCP to choose a valid one for you.

Declaration
public Input<string> Address { get; set; }
Property Value
Type Description
Input<System.String>
View Source

AddressType

The type of the address to reserve.

  • EXTERNAL indicates public/external single IP address.
  • INTERNAL indicates internal IP ranges belonging to some network.
Declaration
public Input<string> AddressType { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Description

An optional description of this resource.

Declaration
public Input<string> Description { get; set; }
Property Value
Type Description
Input<System.String>
View Source

IpVersion

The IP Version that will be used by this address. The default value is IPV4.

Declaration
public Input<string> IpVersion { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Labels

Labels to apply to this address. A list of key->value pairs.

Declaration
public InputMap<string> Labels { get; set; }
Property Value
Type Description
InputMap<System.String>
View Source

Name

Name of the resource. Provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression a-z? which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.

Declaration
public Input<string> Name { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Network

The URL of the network in which to reserve the IP range. The IP range must be in RFC1918 space. The network cannot be deleted if there are any reserved IP ranges referring to it. This should only be set when using an Internal address.

Declaration
public Input<string> Network { get; set; }
Property Value
Type Description
Input<System.String>
View Source

PrefixLength

The prefix length of the IP range. If not present, it means the address field is a single IP address. This field is not applicable to addresses with addressType=EXTERNAL.

Declaration
public Input<int> PrefixLength { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

Project

The ID of the project in which the resource belongs. If it is not provided, the provider project is used.

Declaration
public Input<string> Project { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Purpose

The purpose of the resource. For global internal addresses it can be

  • VPC_PEERING - for peer networks This should only be set when using an Internal address.
Declaration
public Input<string> Purpose { get; set; }
Property Value
Type Description
Input<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.