Show / Hide Table of Contents

Class ServiceArgs

Inheritance
System.Object
InputArgs
ResourceArgs
ServiceArgs
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.OpenStack.VPNaaS
Assembly: Pulumi.OpenStack.dll
Syntax
public sealed class ServiceArgs : ResourceArgs

Constructors

View Source

ServiceArgs()

Declaration
public ServiceArgs()

Properties

View Source

AdminStateUp

The administrative state of the resource. Can either be up(true) or down(false). Changing this updates the administrative state of the existing service.

Declaration
public Input<bool> AdminStateUp { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

Description

The human-readable description for the service. Changing this updates the description of the existing service.

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

Name

The name of the service. Changing this updates the name of the existing service.

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

Region

The region in which to obtain the V2 Networking client. A Networking client is needed to create a VPN service. If omitted, the region argument of the provider is used. Changing this creates a new service.

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

RouterId

The ID of the router. Changing this creates a new service.

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

SubnetId

SubnetID is the ID of the subnet. Default is null.

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

TenantId

The owner of the service. Required if admin wants to create a service for another project. Changing this creates a new service.

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

ValueSpecs

Map of additional options.

Declaration
public InputMap<object> ValueSpecs { get; set; }
Property Value
Type Description
InputMap<System.Object>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.