Show / Hide Table of Contents

Class PublicIpArgs

Inheritance
System.Object
InputArgs
ResourceArgs
PublicIpArgs
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.Azure.Network
Assembly: Pulumi.Azure.dll
Syntax
public sealed class PublicIpArgs : ResourceArgs

Constructors

View Source

PublicIpArgs()

Declaration
public PublicIpArgs()

Properties

View Source

AllocationMethod

Defines the allocation method for this IP address. Possible values are Static or Dynamic.

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

DomainNameLabel

Label for the Domain Name. Will be used to make up the FQDN. If a domain name label is specified, an A DNS record is created for the public IP in the Microsoft Azure DNS system.

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

IdleTimeoutInMinutes

Specifies the timeout for the TCP idle connection. The value can be set between 4 and 30 minutes.

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

IpVersion

The IP Version to use, IPv6 or IPv4.

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

Location

Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.

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

Name

Specifies the name of the Public IP resource . Changing this forces a new resource to be created.

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

PublicIpPrefixId

If specified then public IP address allocated will be provided from the public IP prefix resource.

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

ResourceGroupName

The name of the resource group in which to create the public ip.

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

ReverseFqdn

A fully qualified domain name that resolves to this public IP address. If the reverseFqdn is specified, then a PTR DNS record is created pointing from the IP address in the in-addr.arpa domain to the reverse FQDN.

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

Sku

The SKU of the Public IP. Accepted values are Basic and Standard. Defaults to Basic.

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

Tags

A mapping of tags to assign to the resource.

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

Zones

A collection containing the availability zone to allocate the Public IP in.

Declaration
public Input<string> Zones { get; set; }
Property Value
Type Description
Input<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.